class TestParser

Hierarchy

Expanded class hierarchy of TestParser

File

drupal/core/vendor/twig/twig/test/Twig/Tests/ParserTest.php, line 128

View source
class TestParser extends Twig_Parser {
  public $stream;
  public function filterBodyNodes(Twig_NodeInterface $node) {
    return parent::filterBodyNodes($node);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
TestParser::$stream public property Overrides Twig_Parser::$stream
TestParser::filterBodyNodes public function Overrides Twig_Parser::filterBodyNodes
Twig_Parser::$blocks protected property
Twig_Parser::$blockStack protected property
Twig_Parser::$embeddedTemplates protected property
Twig_Parser::$env protected property
Twig_Parser::$expressionParser protected property
Twig_Parser::$handlers protected property
Twig_Parser::$importedFunctions protected property
Twig_Parser::$macros protected property
Twig_Parser::$parent protected property
Twig_Parser::$reservedMacroNames protected property
Twig_Parser::$stack protected property
Twig_Parser::$tmpVarCount protected property
Twig_Parser::$traits protected property
Twig_Parser::$visitors protected property
Twig_Parser::addHandler public function
Twig_Parser::addImportedFunction public function
Twig_Parser::addNodeVisitor public function
Twig_Parser::addTrait public function
Twig_Parser::embedTemplate public function
Twig_Parser::getBlock public function
Twig_Parser::getBlockStack public function
Twig_Parser::getCurrentToken public function Gets the current token.
Twig_Parser::getEnvironment public function
Twig_Parser::getExpressionParser public function Gets the expression parser.
Twig_Parser::getImportedFunction public function
Twig_Parser::getParent public function
Twig_Parser::getStream public function Gets the token stream.
Twig_Parser::getVarName public function
Twig_Parser::hasBlock public function
Twig_Parser::hasMacro public function
Twig_Parser::hasTraits public function
Twig_Parser::isMainScope public function
Twig_Parser::parse public function Converts a token stream to a node tree. Overrides Twig_ParserInterface::parse
Twig_Parser::peekBlockStack public function
Twig_Parser::popBlockStack public function
Twig_Parser::popLocalScope public function
Twig_Parser::pushBlockStack public function
Twig_Parser::pushLocalScope public function
Twig_Parser::setBlock public function
Twig_Parser::setMacro public function
Twig_Parser::setParent public function
Twig_Parser::subparse public function
Twig_Parser::__construct public function Constructor.