Home
last modified time | relevance | path

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

/template/twigstarter/vendor/twig/twig/src/TokenParser/
H A DApplyTokenParser.php37 … $filter = $this->parser->getExpressionParser()->parseFilterExpressionRaw($ref, $this->getTag());
44 new SetNode(true, $ref, $body, $lineno, $this->getTag()),
45 new PrintNode($filter, $lineno, $this->getTag()),
54 public function getTag() function in Twig\\TokenParser\\ApplyTokenParser
H A DFilterTokenParser.php39 …w BlockReferenceExpression(new ConstantExpression($name, $lineno), null, $lineno, $this->getTag());
41 … $filter = $this->parser->getExpressionParser()->parseFilterExpressionRaw($ref, $this->getTag());
50 return new PrintNode($filter, $lineno, $this->getTag());
58 public function getTag() function in Twig\\TokenParser\\FilterTokenParser
H A DFlushTokenParser.php28 return new FlushNode($token->getLine(), $this->getTag());
31 public function getTag() function in Twig\\TokenParser\\FlushTokenParser
H A DDoTokenParser.php28 return new DoNode($expr, $token->getLine(), $this->getTag());
31 public function getTag() function in Twig\\TokenParser\\DoTokenParser
H A DDeprecatedTokenParser.php35 return new DeprecatedNode($expr, $token->getLine(), $this->getTag());
38 public function getTag() function in Twig\\TokenParser\\DeprecatedTokenParser
H A DSpacelessTokenParser.php42 return new SpacelessNode($body, $lineno, $this->getTag());
50 public function getTag() function in Twig\\TokenParser\\SpacelessTokenParser
H A DImportTokenParser.php34 …return new ImportNode($macro, $var, $token->getLine(), $this->getTag(), $this->parser->isMainScope…
37 public function getTag() function in Twig\\TokenParser\\ImportTokenParser
H A DWithTokenParser.php41 return new WithNode($body, $variables, $only, $token->getLine(), $this->getTag());
49 public function getTag() function in Twig\\TokenParser\\WithTokenParser
H A DSandboxTokenParser.php51 return new SandboxNode($body, $token->getLine(), $this->getTag());
59 public function getTag() function in Twig\\TokenParser\\SandboxTokenParser
H A DIncludeTokenParser.php33 …turn new IncludeNode($expr, $variables, $only, $ignoreMissing, $token->getLine(), $this->getTag());
62 public function getTag() function in Twig\\TokenParser\\IncludeTokenParser
H A DAutoEscapeTokenParser.php43 return new AutoEscapeNode($value, $body, $lineno, $this->getTag());
51 public function getTag() function in Twig\\TokenParser\\AutoEscapeTokenParser
H A DFromTokenParser.php50 …$node = new ImportNode($macro, $var, $token->getLine(), $this->getTag(), $this->parser->isMainScop…
59 public function getTag() function in Twig\\TokenParser\\FromTokenParser
H A DSetTokenParser.php58 return new SetNode($capture, $names, $values, $lineno, $this->getTag());
66 public function getTag() function in Twig\\TokenParser\\SetTokenParser
H A DMacroTokenParser.php50 …setMacro($name, new MacroNode($name, new BodyNode([$body]), $arguments, $lineno, $this->getTag()));
60 public function getTag() function in Twig\\TokenParser\\MacroTokenParser
H A DIfTokenParser.php70 return new IfNode(new Node($tests), $else, $lineno, $this->getTag());
83 public function getTag() function in Twig\\TokenParser\\IfTokenParser
H A DEmbedTokenParser.php58 …ule->getAttribute('index'), $variables, $only, $ignoreMissing, $token->getLine(), $this->getTag());
66 public function getTag() function in Twig\\TokenParser\\EmbedTokenParser
H A DBlockTokenParser.php64 return new BlockReferenceNode($name, $lineno, $this->getTag());
72 public function getTag() function in Twig\\TokenParser\\BlockTokenParser
H A DForTokenParser.php77 …eturn new ForNode($keyTarget, $valueTarget, $seq, $ifexpr, $body, $else, $lineno, $this->getTag());
131 public function getTag() function in Twig\\TokenParser\\ForTokenParser
H A DTokenParserInterface.php45 public function getTag(); function
H A DExtendsTokenParser.php46 public function getTag() function in Twig\\TokenParser\\ExtendsTokenParser
H A DUseTokenParser.php67 public function getTag() function in Twig\\TokenParser\\UseTokenParser
/template/twigstarter/vendor/twig/twig/src/Extension/
H A DStagingExtension.php75 if (isset($this->tokenParsers[$parser->getTag()])) {
76 … throw new \LogicException(sprintf('Tag "%s" is already registered.', $parser->getTag()));
79 $this->tokenParsers[$parser->getTag()] = $parser;
/template/bootie/_test/
H A Dheader.test.php27 $pageId = syntax_plugin_webcomponent_button::getTag().':header:test_base';
/template/twigstarter/vendor/twig/twig/src/
H A DParser.php74 $this->handlers[$handler->getTag()] = $handler;
171 …f(' (expecting closing tag for the "%s" tag defined near line %s).', $test[0]->getTag(), $lineno));
H A DEnvironment.php754 $tags[$parser->getTag()] = $parser;