Stores information about a call to a method.
Constructors
new(method : Symbol, arguments : AbstractArguments = Arguments.none)
SourceClass methods
build(method : Symbol, *args, **kwargs)
Creates a method call from within a method.
Takes the same arguments as FormalArguments.build but with the method name first.
Sourcecapture(method : Symbol, *args, **kwargs)
Creates a method call by splatting its arguments.
SourceInstance methods
arguments
Arguments passed to the method.
Sourceinspect(io : IO) : Nil
Constructs a string containing the method name and arguments.
Sourceto_s(io : IO) : Nil
Constructs a string containing the method name and arguments.
Source