Phan\Analysis\AssignmentVisitor::visitArray PHP Method

visitArray() public method

This happens for code like the following list($a) = [1, 2, 3];
public visitArray ( ast\Node $node ) : Context
$node ast\Node A node to parse
return Phan\Language\Context A new or an unchanged context resulting from parsing the node
    public function visitArray(Node $node) : Context
    {
        // TODO: I'm not sure how to figure this one out
        return $this->context;
    }