コード例 #1
0
ファイル: LexerToken.php プロジェクト: jmdisher/p2pc
 public function __construct($name, $text, $file, $line)
 {
     parent::__construct($name);
     $this->text = $text;
     $this->file = $file;
     $this->line = $line;
 }
コード例 #2
0
ファイル: ParseTree.php プロジェクト: jmdisher/p2pc
 public function __construct($name)
 {
     parent::__construct($name);
     $this->children = array();
 }