Home
last modified time | relevance | path

Searched refs:parseExpression (Results 1 – 25 of 30) sorted by relevance

12

/template/twigstarter/vendor/twig/twig/src/
DExpressionParser.php59 public function parseExpression($precedence = 0) function in Twig\\ExpressionParser
67 return $this->parser->parseExpression((int) $precedence);
77 return $this->parseExpression();
87 return $this->parseExpression();
97 return $this->parseExpression();
107 return $this->parseExpression();
117 return $this->parseExpression();
127 return $this->parseExpression();
250 … $value = new SpreadUnary($this->parseExpression(), $stream->getCurrent()->getLine());
254 $value = $this->parseExpression();
[all …]
/template/twigstarter/vendor/twig/twig/src/TokenParser/
DDeprecatedTokenParser.php36 $expr = $this->parser->parseExpression();
46 $node->setNode('package', $this->parser->parseExpression());
49 $node->setNode('version', $this->parser->parseExpression());
DIncludeTokenParser.php33 $expr = $this->parser->parseExpression();
56 $variables = $this->parser->parseExpression();
DIfTokenParser.php39 $expr = $this->parser->parseExpression();
55 $expr = $this->parser->parseExpression();
DDoTokenParser.php27 $expr = $this->parser->parseExpression();
DExtendsTokenParser.php39 $this->parser->setParent($this->parser->parseExpression());
DWithTokenParser.php34 $variables = $this->parser->parseExpression();
DImportTokenParser.php31 $macro = $this->parser->parseExpression();
DAutoEscapeTokenParser.php35 $expr = $this->parser->parseExpression();
DUseTokenParser.php39 $template = $this->parser->parseExpression();
DSetTokenParser.php79 $targets[] = $this->parser->parseExpression();
DFromTokenParser.php32 $macro = $this->parser->parseExpression();
DBlockTokenParser.php56 new PrintNode($this->parser->parseExpression(), $lineno),
DForTokenParser.php40 $seq = $this->parser->parseExpression();
DEmbedTokenParser.php31 $parent = $this->parser->parseExpression();
/template/twigstarter/vendor/twig/twig/src/ExpressionParser/Prefix/
DLiteralExpressionParser.php129 $nodes[] = $parser->parseExpression();
167 $node->addElement($parser->parseExpression());
194 $node->addElement($parser->parseExpression());
217 $key = $parser->parseExpression();
225 $value = $parser->parseExpression();
DUnaryOperatorExpressionParser.php45 …return new ($this->nodeClass)($parser->parseExpression($this->operandPrecedence ?? $this->preceden…
DGroupingExpressionParser.php33 $expr = $parser->parseExpression($this->getPrecedence());
/template/twigstarter/vendor/twig/twig/src/ExpressionParser/Infix/
DConditionalTernaryExpressionParser.php31 $then = $parser->parseExpression($this->getPrecedence());
34 $else = $parser->parseExpression($this->getPrecedence());
DSquareBracketExpressionParser.php44 $attribute = $parser->parseExpression();
55 $length = $parser->parseExpression();
DArgumentsTrait.php54 $value = $parser->parseExpression();
70 $value = $parser->parseExpression();
DArrowExpressionParser.php31 return new ArrowFunctionExpression($parser->parseExpression(), $expr, $token->getLine());
DBinaryOperatorExpressionParser.php46 …$right = $parser->parseExpression(InfixAssociativity::Left === $this->getAssociativity() ? $this->…
DAssignmentExpressionParser.php45 …$right = $parser->parseExpression(InfixAssociativity::Left === $this->getAssociativity() ? $this->…
DIsExpressionParser.php46 $arguments = new Nodes([0 => $parser->parseExpression($this->getPrecedence())]);

12