public function TwigTestTokenParser_§::parse in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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
Overrides Twig_TokenParserInterface::parse
File
- vendor/
twig/ twig/ test/ Twig/ Tests/ IntegrationTest.php, line 114  
Class
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);
}