コード例 #1
0
ファイル: ValueNode.php プロジェクト: chrisguitarguy/plot
 public function __construct($value, Token $token)
 {
     parent::__construct($token);
     $this->value = $value;
 }
コード例 #2
0
 public function __construct($ident, Token $token)
 {
     parent::__construct($token);
     $this->ident = $ident;
 }