/var/www/vhosts/ihelp.ro/httpdocs/vendor/twig/twig/src/TokenParser
NameSizeModeActions
AbstractTokenParser.php5730644editdlrm
ApplyTokenParser.php14920644editdlrm
AutoEscapeTokenParser.php15820644editdlrm
BlockTokenParser.php24790644editdlrm
DeprecatedTokenParser.php9690644editdlrm
DoTokenParser.php7800644editdlrm
EmbedTokenParser.php22720644editdlrm
ExtendsTokenParser.php13620644editdlrm
FlushTokenParser.php7080644editdlrm
ForTokenParser.php22870644editdlrm
FromTokenParser.php16810644editdlrm
IfTokenParser.php25030644editdlrm
ImportTokenParser.php11760644editdlrm
IncludeTokenParser.php16280644editdlrm
MacroTokenParser.php18930644editdlrm
SandboxTokenParser.php18120644editdlrm
SetTokenParser.php20870644editdlrm
TokenParserInterface.php8750644editdlrm
UseTokenParser.php19760644editdlrm
WithTokenParser.php13010644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/twig/twig/src/TokenParser/BlockTokenParser.php (2479B)
* {% block title %}{% endblock %} - My Webpage * {% endblock %} * * @internal */ final class BlockTokenParser extends AbstractTokenParser { public function parse(Token $token): Node { $lineno = $token->getLine(); $stream = $this->parser->getStream(); $name = $stream->expect(/* Token::NAME_TYPE */ 5)->getValue(); if ($this->parser->hasBlock($name)) { throw new SyntaxError(sprintf("The block '%s' has already been defined line %d.", $name, $this->parser->getBlock($name)->getTemplateLine()), $stream->getCurrent()->getLine(), $stream->getSourceContext()); } $this->parser->setBlock($name, $block = new BlockNode($name, new Node([]), $lineno)); $this->parser->pushLocalScope(); $this->parser->pushBlockStack($name); if ($stream->nextIf(/* Token::BLOCK_END_TYPE */ 3)) { $body = $this->parser->subparse([$this, 'decideBlockEnd'], true); if ($token = $stream->nextIf(/* Token::NAME_TYPE */ 5)) { $value = $token->getValue(); if ($value != $name) { throw new SyntaxError(sprintf('Expected endblock for block "%s" (but "%s" given).', $name, $value), $stream->getCurrent()->getLine(), $stream->getSourceContext()); } } } else { $body = new Node([ new PrintNode($this->parser->getExpressionParser()->parseExpression(), $lineno), ]); } $stream->expect(/* Token::BLOCK_END_TYPE */ 3); $block->setNode('body', $body); $this->parser->popBlockStack(); $this->parser->popLocalScope(); return new BlockReferenceNode($name, $lineno, $this->getTag()); } public function decideBlockEnd(Token $token): bool { return $token->test('endblock'); } public function getTag(): string { return 'block'; } }