| 1 | <?php |
||
| 19 | class SyntaxCheckNodeVisitor extends Twig_BaseNodeVisitor |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var array |
||
| 23 | */ |
||
| 24 | protected $path = []; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | * |
||
| 29 | * @throws Twig_Error_Syntax |
||
| 30 | */ |
||
| 31 | protected function doEnterNode(Twig_Node $node, Twig_Environment $env) |
||
| 58 | |||
| 59 | /** |
||
| 60 | * {@inheritdoc} |
||
| 61 | */ |
||
| 62 | protected function doLeaveNode(Twig_Node $node, Twig_Environment $env) |
||
| 68 | |||
| 69 | /** |
||
| 70 | * {@inheritdoc} |
||
| 71 | */ |
||
| 72 | public function getPriority() |
||
| 76 | } |
||
| 77 |