Microsoft.JScript.FunctionExpression.JScriptFunctionExpression C# (CSharp) Method

JScriptFunctionExpression() public static method

public static JScriptFunctionExpression ( RuntimeTypeHandle handle, String name, String method_name, String formal_params, JSLocalField fields, bool must_save_stack_locals, bool hasArgumentsObject, String text, VsaEngine engine ) : FunctionObject
handle System.RuntimeTypeHandle
name String
method_name String
formal_params String
fields JSLocalField
must_save_stack_locals bool
hasArgumentsObject bool
text String
engine Microsoft.JScript.Vsa.VsaEngine
return FunctionObject
      public static FunctionObject JScriptFunctionExpression(RuntimeTypeHandle handle, String name, String method_name, String[] formal_params, JSLocalField[] fields,
      bool must_save_stack_locals, bool hasArgumentsObject, String text, VsaEngine engine){
        Type t = Type.GetTypeFromHandle(handle);
        FunctionObject result = new FunctionObject(t, name, method_name, formal_params, fields, must_save_stack_locals, hasArgumentsObject, text, engine);
        return result;
      }