コード例 #1
0
 /**
  * @param string $comparator
  */
 public function __construct($comparator)
 {
     parent::__construct(self::PRIORITY_COMPARATOR);
     $this->comparator = $comparator;
 }
コード例 #2
0
ファイル: TokenAnd.php プロジェクト: tboloo/figdice
 public function __construct()
 {
     parent::__construct(self::PRIORITY_AND_OR);
 }
コード例 #3
0
ファイル: TokenDiv.php プロジェクト: tboloo/figdice
 /**
  * @param Lexer $lexer
  */
 public function __construct()
 {
     parent::__construct(self::PRIORITY_MUL_DIV);
 }