const class sys::Method

sys::Obj
  sys::Slot
    sys::Method

Source

Method models a function with a formal parameter list and return value (or Void if no return).

call

Obj? call(Obj? a := null, Obj? b := null, Obj? c := null, Obj? d := null, Obj? e := null, Obj? f := null, Obj? g := null, Obj? h := null)

Source

Convenience for func.call

callList

Obj? callList(Obj?[]? args)

Source

Convenience for func.callList

callOn

Obj? callOn(Obj? target, Obj?[]? args)

Source

Convenience for func.callOn

func

Func func()

Source

Get the function body of this method.

paramDef

Obj? paramDef(Param param, Obj? instance := null)

Source

Evaluate the parameter default using reflection. If this method is static or a constructor, then instance should be null. Raise an exception if the parameter default cannot be evaluated independently (such as using an expression with previous parameters).

params

Param[] params()

Source

Get the parameters of the method. Convenience for func.params.

returns

Type returns()

Source

Type returned by the method or sys::Void if no return value. Convenience for func.returns.