struct ASTNode
- ASTNode
- Struct
- Value
- Object
Defined in:
ast.crConstructors
Instance Method Summary
- #children : Array(ASTNode)
- #children=(children : Array(ASTNode))
- #type : String
- #type=(type : String)
- #value : Char | Int32 | String | Nil
- #value=(value : Char | Int32 | String | Nil)
Constructor Detail
def self.new(type : String, children : Array(ASTNode) = [] of ASTNode, value : Char | Int32 | String | Nil = nil)
#