Microsoft.JScript.FunctionObject.FunctionObject C# (CSharp) Method

FunctionObject() private method

private FunctionObject ( String name, ParameterDeclaration parameter_declarations, TypeExpression return_type_expr, Block body, FunctionScope own_scope, ScriptObject enclosing_scope, Context funcContext, MethodAttributes attributes ) : Microsoft.JScript.Vsa
name String
parameter_declarations ParameterDeclaration
return_type_expr TypeExpression
body Block
own_scope FunctionScope
enclosing_scope ScriptObject
funcContext Context
attributes MethodAttributes
return Microsoft.JScript.Vsa
      internal FunctionObject(String name, ParameterDeclaration[] parameter_declarations, TypeExpression return_type_expr, Block body, FunctionScope own_scope, 
        ScriptObject enclosing_scope, Context funcContext, MethodAttributes attributes)
        : this(name, parameter_declarations, return_type_expr, body, own_scope, enclosing_scope, funcContext, attributes, null, false){
      }
      

Same methods

FunctionObject::FunctionObject ( String name, ParameterDeclaration parameter_declarations, TypeExpression return_type_expr, Block body, FunctionScope own_scope, ScriptObject enclosing_scope, Context funcContext, MethodAttributes attributes, CustomAttributeList customAttributes, bool isMethod ) : Microsoft.JScript.Vsa
FunctionObject::FunctionObject ( Type t, String name, String method_name, String formal_parameters, JSLocalField fields, bool must_save_stack_locals, bool hasArgumentsObject, String text, VsaEngine engine ) : Microsoft.JScript.Vsa