Ok so I tried to parse a very simple list like

[ 67,12342,5 ]

using Parse and explore , I can find these number by following this AST
(for example 67)

PyFileInputNode>>statements: -> 1: PySimpleStmNode>>stmts: -> 1:
PyExprStmtNode>>tests: ->1: PyPowerNode>>atom: -> PyAtomNode>>list: -> 1:
PyPowerNode>>atom: -> PyPowerNode>>numberToken -> numberToken>>value -> 67

quite a structure, but the one thing I dont get is "tests" , why "tests" ?

Does it tests something and if yes what ?

Reply via email to