Home
last modified time | relevance | path

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

/template/twigstarter/vendor/twig/twig/src/
H A DExtensionSet.php38 private $unaryOperators; variable in Twig\\ExtensionSet
400 return $this->unaryOperators;
419 $this->unaryOperators = [];
471 $this->unaryOperators = array_merge($this->unaryOperators, $operators[0]);
H A DExpressionParser.php53 private $unaryOperators; variable in Twig\\ExpressionParser
60 $this->unaryOperators = $env->getUnaryOperators();
161 $operator = $this->unaryOperators[$token->getValue()];
201 …return $token->test(/* Token::OPERATOR_TYPE */ 8) && isset($this->unaryOperators[$token->getValue(…
258 } elseif (isset($this->unaryOperators[$token->getValue()])) {
259 $class = $this->unaryOperators[$token->getValue()]['class'];