Home
last modified time | relevance | path

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

/template/twigstarter/vendor/twig/twig/src/
H A DExtensionSet.php39 private $binaryOperators; variable in Twig\\ExtensionSet
409 return $this->binaryOperators;
420 $this->binaryOperators = [];
472 $this->binaryOperators = array_merge($this->binaryOperators, $operators[1]);
H A DExpressionParser.php54 private $binaryOperators; variable in Twig\\ExpressionParser
61 $this->binaryOperators = $env->getBinaryOperators();
72 …while ($this->isBinary($token) && $this->binaryOperators[$token->getValue()]['precedence'] >= $pre…
73 $op = $this->binaryOperators[$token->getValue()];
206 …return $token->test(/* Token::OPERATOR_TYPE */ 8) && isset($this->binaryOperators[$token->getValue…