Changeset View
Changeset View
Standalone View
Standalone View
src/parser/aast/api/AASTTree.php
| <?php | <?php | ||||
| /** | /** | ||||
| * An abstract abstract syntax tree. | * An abstract abstract syntax tree. | ||||
| */ | */ | ||||
| abstract class AASTTree { | abstract class AASTTree extends Phobject { | ||||
| protected $tree = array(); | protected $tree = array(); | ||||
| protected $stream = array(); | protected $stream = array(); | ||||
| protected $lineMap; | protected $lineMap; | ||||
| protected $rawSource; | protected $rawSource; | ||||
| private $treeType = 'Abstract'; | private $treeType = 'Abstract'; | ||||
| private $tokenConstants; | private $tokenConstants; | ||||
| ▲ Show 20 Lines • Show All 166 Lines • Show Last 20 Lines | |||||