Lines Matching refs:subNode1
6 public $subNode1; variable in PhpParser\\DummyNode
10 public function __construct($subNode1, $subNode2, $notSubNode, $attributes) { argument
12 $this->subNode1 = $subNode1;
64 $this->assertSame('value1', $node->subNode1);
66 $this->assertTrue(isset($node->subNode1));
124 $node->subNode1 = 'newValue';
125 $this->assertSame('newValue', $node->subNode1);
128 $subNode = &$node->subNode1;
130 $this->assertSame('newNewValue', $node->subNode1);
133 unset($node->subNode1);
134 $this->assertFalse(isset($node->subNode1));