CallExpr

A function call expression

Members

Variables

args
Expr[] args;

The arguments to use in the call

base
Expr base;

The base of the call expression

method
Nullable!string method;

The method name to use in the call. If supplied, the call is a selfcall, i.e. 'base:method(args)' is called. Otherwise, 'base' is treated as a function, i.e. 'base(args)' is called.

Meta