You are here

public function TwigTestTokenParser_§::parse in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/twig/twig/test/Twig/Tests/IntegrationTest.php \TwigTestTokenParser_§::parse()

Parses a token and returns a node.

Parameters

Twig_Token $token A Twig_Token instance:

Return value

Twig_NodeInterface A Twig_NodeInterface instance

Throws

Twig_Error_Syntax

Overrides Twig_TokenParserInterface::parse

File

vendor/twig/twig/test/Twig/Tests/IntegrationTest.php, line 114

Class

TwigTestTokenParser_§

Code

public function parse(Twig_Token $token) {
  $this->parser
    ->getStream()
    ->expect(Twig_Token::BLOCK_END_TYPE);
  return new Twig_Node_Print(new Twig_Node_Expression_Constant('§', -1), -1);
}