class Axal::AST::FunctionCall
- Axal::AST::FunctionCall
- Axal::AST::Expression
- Reference
- Object
Defined in:
lang/ast/function_call.crConstructors
Instance Method Summary
- #==(other : Expression)
- #args : Array(Expression)
- #children
- #function_name_as_str
- #name : Identifier
- #qualifiers : Array(Identifier)
Instance methods inherited from class Axal::AST::Expression
==(other)
==,
children
children,
type
type,
value : Expression | ::Nil | String | ::Nil | Float64 | ::Nil | Bool | ::Nil
value
Constructor methods inherited from class Axal::AST::Expression
new(value : Axal::AST::Expression | Bool | Float64 | String | ::Nil = nil)
new
Constructor Detail
def self.new(name : Axal::AST::Identifier, args : Array(Axal::AST::Expression) = [] of Expression, qualifiers : Array(Axal::AST::Identifier) = [] of Identifier)
#