class TestTokenParser in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/twig/twig/test/Twig/Tests/ParserTest.php \TestTokenParser
Hierarchy
- class \Twig_TokenParser implements Twig_TokenParserInterface
- class \TestTokenParser
Expanded class hierarchy of TestTokenParser
File
- vendor/
twig/ twig/ test/ Twig/ Tests/ ParserTest.php, line 158
View source
class TestTokenParser extends Twig_TokenParser {
public function parse(Twig_Token $token) {
// simulate the parsing of another template right in the middle of the parsing of the current template
$this->parser
->parse(new Twig_TokenStream(array(
new Twig_Token(Twig_Token::BLOCK_START_TYPE, '', 1),
new Twig_Token(Twig_Token::NAME_TYPE, 'extends', 1),
new Twig_Token(Twig_Token::STRING_TYPE, 'base', 1),
new Twig_Token(Twig_Token::BLOCK_END_TYPE, '', 1),
new Twig_Token(Twig_Token::EOF_TYPE, '', 1),
)));
$this->parser
->getStream()
->expect(Twig_Token::BLOCK_END_TYPE);
return new Twig_Node(array());
}
public function getTag() {
return 'test';
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TestTokenParser:: |
public | function |
Gets the tag name associated with this token parser. Overrides Twig_TokenParserInterface:: |
|
TestTokenParser:: |
public | function |
Parses a token and returns a node. Overrides Twig_TokenParserInterface:: |
|
Twig_TokenParser:: |
protected | property | ||
Twig_TokenParser:: |
public | function |
Sets the parser associated with this token parser. Overrides Twig_TokenParserInterface:: |