ABT.FuncCall.FuncCall C# (CSharp) Method

FuncCall() public method

public FuncCall ( Expr func, FunctionType funcType, List args ) : System
func Expr
funcType FunctionType
args List
return System
        public FuncCall(Expr func, FunctionType funcType, List<Expr> args) {
            this.Func = func;
            this.FuncType = funcType;
            this.Args = args;
        }