Home
last modified time | relevance | path

Searched refs:subparse (Results 1 – 11 of 11) sorted by relevance

/template/twigstarter/vendor/twig/twig/src/TokenParser/
DIfTokenParser.php42 $body = $this->parser->subparse([$this, 'decideIfFork']);
51 $else = $this->parser->subparse([$this, 'decideIfEnd']);
57 $body = $this->parser->subparse([$this, 'decideIfFork']);
DForTokenParser.php43 $body = $this->parser->subparse([$this, 'decideForFork']);
47 … $else = new ForElseNode($this->parser->subparse([$this, 'decideForEnd'], true), $elseLineno);
DGuardTokenParser.php50 $body = $this->parser->subparse([$this, 'decideGuardFork']);
58 $else = $this->parser->subparse([$this, 'decideGuardEnd'], true);
DWithTokenParser.php40 $body = $this->parser->subparse([$this, 'decideWithEnd'], true);
DAutoEscapeTokenParser.php43 $body = $this->parser->subparse([$this, 'decideBlockEnd'], true);
DSandboxTokenParser.php40 $body = $this->parser->subparse([$this, 'decideBlockEnd'], true);
DApplyTokenParser.php48 $body = $this->parser->subparse([$this, 'decideApplyEnd'], true);
DSetTokenParser.php58 $values = $this->parser->subparse([$this, 'decideBlockEnd'], true);
DBlockTokenParser.php46 $body = $this->parser->subparse([$this, 'decideBlockEnd'], true);
DMacroTokenParser.php46 $body = $this->parser->subparse([$this, 'decideBlockEnd'], true);
/template/twigstarter/vendor/twig/twig/src/
DParser.php110 $body = $this->subparse($test, $dropNeedle);
164 $this->subparse($test, $dropNeedle);
173 public function subparse($test, bool $dropNeedle = false): Node function in Twig\\Parser