PythonExpression AST Python Object
The PythonExpression
object matches a Python expression (assignment, function call, etc.).
The astType
value for this node is expression
.
Attributes
atom
(typeAstString
): the value of the expressionexpressionType
(typestring
): the type of expression. Current valid values areatom
.