Home
last modified time | relevance | path

Searched refs:subNode1 (Results 1 – 1 of 1) sorted by relevance

/PHP-Parser/test/PhpParser/
H A DNodeAbstractTest.php6 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);
[all …]

Completed in 6 milliseconds