class Crystal::Macros::Call

Overview

A method call.

Defined in:

compiler/crystal/macros.cr

Instance Method Summary

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]