class Crystal::Macros::ProcPointer

Overview

A proc pointer, like ->my_var.some_method(String)

Defined in:

compiler/crystal/macros.cr

Instance Method Summary

Instance Method Detail

def args : ArrayLiteral(ASTNode) #

Returns the types of the arguments of the proc.


[View source]
def global? : BoolLiteral #

Returns true if this proc pointer refers to a global method (starts with :: and does not have a receiver).


[View source]
def name : MacroId #

Returns the name of the method this proc points to.


[View source]
def obj : ASTNode | NilLiteral #

Returns the receiver of the proc, or nil if the proc is not attached to an object.


[View source]