Called before child nodes are visited.
Twig_NodeInterface $node The node to visit:
Twig_Environment $env The Twig environment instance:
Twig_NodeInterface The modified node
Overrides Twig_NodeVisitorInterface::enterNode
public function enterNode(Twig_NodeInterface $node, Twig_Environment $env) {
if ($node instanceof Twig_Node_Expression_GetAttr) {
$node
->setAttribute('disable_c_ext', true);
}
return $node;
}