예제 #1
0
 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();
 }