public function Twig_Tests_ParserTest::getFilterBodyNodesDataThrowsException

File

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

Class

Twig_Tests_ParserTest

Code

public function getFilterBodyNodesDataThrowsException() {
  return array(
    array(
      new Twig_Node_Text('foo', 0),
    ),
    array(
      new Twig_Node(array(
        new Twig_Node(array(
          new Twig_Node_Text('foo', 0),
        )),
      )),
    ),
  );
}