ast.NodeType
A node type represents a specific type of node, usually a subclass of the node base class.
Possible Types
The possible node types can be seen in the following table.
| NodeType | Matching Class |
|---|---|
| .Node | ast.Node |
| .List | ast.List |
| .Scope | ast.Scope |
| .Program | ast.Program |
| .Unsafe | ast.Unsafe |
| .UnsafeVariable | ast.UnsafeVariable |
| .Function | ast.Function |
| .FunctionParameter | ast.FunctionParameter |
| .FunctionCall | ast.FunctionCall |
| .Variable | ast.Variable |
| .VariableDeclaration | ast.VariableDeclaration |
| .Number | ast.Number |
| .Command | ast.Command |