NodeVisitor traverses the AST depth-first and visits each node only once, on enter. Therefore it's problematic to do something serious with it. Is it possible to change its default behavior?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Is it possible to visit nodes in Python AST with ast.NodeVisitor twice or change order of traversal?
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Nope. You should write your own visitor. Recursively visiting all nodes is fairly simple, so if the ast module stuff doesn't do it for you (and there is nothing in the module to do what you want, in this case), it isn't that bad to do it yourself. |
|||
|
|
|
Maybe somebody will be interested in some sketched out example, how to do what was proposed by DSblizzard, so hear is my example:
Hope somebody may find it useful. |
|||
|
|