class Crystal::Macros::Call

Overview

A method call.

Defined in:

compiler/crystal/macros.cr

Instance Method Summary

Instance methods inherited from class Crystal::Macros::ASTNode

!=(other : ASTNode) : BoolLiteral !=, ==(other : ASTNode) : BoolLiteral ==, class_name : StringLiteral class_name, column_number : StringLiteral | NilLiteral column_number, end_column_number : StringLiteral | NilLiteral end_column_number, end_line_number : StringLiteral | NilLiteral end_line_number, filename : StringLiteral | NilLiteral filename, id : MacroId id, is_a?(type : TypeNode) : BoolLiteral is_a?, line_number : StringLiteral | NilLiteral line_number, nil? : BoolLiteral nil?, raise(message) : NoReturn raise, stringify : StringLiteral stringify, symbolize : SymbolLiteral symbolize

Instance Method Detail

def args : ArrayLiteral #

Returns this call's arguments.


[View source]
def block : Block | Nop #

Returns this call's block, if any.


[View source]
def block_arg : ASTNode | Nop #

Returns this call's block argument, if any


[View source]
def global? : BoolLiteral #

Returns true if this call refers to a global method (starts with ::).


[View source]
def id : MacroId #

Returns this call's name as a MacroId.


[View source]
def name : MacroId #

Returns the method name of this call.


[View source]
def named_args : ArrayLiteral(NamedArgument) #

Returns this call's named arguments.


[View source]
def receiver : ASTNode | Nop #

Returns this call's receiver, if any.


[View source]