interface Twig_NodeInterface

Represents a node in the AST.

@package twig @author Fabien Potencier <fabien@symfony.com>

Hierarchy

Expanded class hierarchy of Twig_NodeInterface

All classes that implement Twig_NodeInterface

File

drupal/core/vendor/twig/twig/lib/Twig/NodeInterface.php, line 18

View source
interface Twig_NodeInterface extends Countable, IteratorAggregate {

  /**
   * Compiles the node to PHP.
   *
   * @param Twig_Compiler A Twig_Compiler instance
   */
  function compile(Twig_Compiler $compiler);
  function getLine();
  function getNodeTag();

}

Members