function ExtendsTokenParser::parse
Overrides TokenParserInterface::parse
File
-
vendor/
twig/ twig/ src/ TokenParser/ ExtendsTokenParser.php, line 29
Class
- ExtendsTokenParser
- Extends a template by another one.
Namespace
Twig\TokenParserCode
public function parse(Token $token) : Node {
$stream = $this->parser
->getStream();
if ($this->parser
->peekBlockStack()) {
throw new SyntaxError('Cannot use "extend" in a block.', $token->getLine(), $stream->getSourceContext());
}
elseif (!$this->parser
->isMainScope()) {
throw new SyntaxError('Cannot use "extend" in a macro.', $token->getLine(), $stream->getSourceContext());
}
$this->parser
->setParent($this->parser
->getExpressionParser()
->parseExpression());
$stream->expect(Token::BLOCK_END_TYPE);
return new EmptyNode($token->getLine());
}