AST.FuncCall.Create C# (CSharp) 메소드

Create() 공개 정적인 메소드

public static Create ( Expr func, ImmutableList args ) : Expr
func Expr
args ImmutableList
리턴 Expr
        public static Expr Create(Expr func, ImmutableList<Expr> args) =>
            new FuncCall(func, args);