You are here

public function Twig_TokenParserInterface::parse in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/twig/twig/lib/Twig/TokenParserInterface.php \Twig_TokenParserInterface::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

19 methods override Twig_TokenParserInterface::parse()
TestTokenParser::parse in vendor/twig/twig/test/Twig/Tests/ParserTest.php
Parses a token and returns a node.
TwigTestTokenParser_§::parse in vendor/twig/twig/test/Twig/Tests/IntegrationTest.php
Parses a token and returns a node.
Twig_Tests_EnvironmentTest_TokenParser::parse in vendor/twig/twig/test/Twig/Tests/EnvironmentTest.php
Parses a token and returns a node.
Twig_TokenParser_AutoEscape::parse in vendor/twig/twig/lib/Twig/TokenParser/AutoEscape.php
Parses a token and returns a node.
Twig_TokenParser_Block::parse in vendor/twig/twig/lib/Twig/TokenParser/Block.php
Parses a token and returns a node.

... See full list

File

vendor/twig/twig/lib/Twig/TokenParserInterface.php, line 35

Class

Twig_TokenParserInterface
Interface implemented by token parsers.

Code

public function parse(Twig_Token $token);