Home
last modified time | relevance | path

Searched refs:binaryOperators (Results 1 – 2 of 2) sorted by relevance

/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DExpressionParser.php50 protected $binaryOperators; variable in Twig\\ExpressionParser
61 $this->binaryOperators = $env->getBinaryOperators();
67 $this->binaryOperators = func_get_arg(2);
75 …while ($this->isBinary($token) && $this->binaryOperators[$token->getValue()]['precedence'] >= $pre…
76 $op = $this->binaryOperators[$token->getValue()];
151 … return $token->test(Token::OPERATOR_TYPE) && isset($this->binaryOperators[$token->getValue()]);
H A DEnvironment.php72 protected $binaryOperators; variable in Twig\\Environment
1483 return $this->binaryOperators;
1540 $this->binaryOperators = [];
1617 $this->binaryOperators = array_merge($this->binaryOperators, $operators[1]);