Closed ch3njust1n closed 7 years ago
You can walk any AST node (depth first) by iterating over it,
tree = javalang.parse.parse(java_source)
for path, node in tree:
print path, node
is this what you're looking for?
Not exactly what I was looking for, but I figured it out. Thanks.
Is there a way I can just get the full tree flattened without having to reconstruct it with the paths and nodes from each iteration?