AST.FuncCall.FuncCall C# (CSharp) Method

FuncCall() protected method

protected FuncCall ( Expr func, ImmutableList args ) : System
func Expr
args ImmutableList
return System
        protected FuncCall(Expr func, ImmutableList<Expr> args) {
            this.Func = func;
            this.Args = args;
        }