Rhino.InterpretedFunction.CreateFunction C# (CSharp) Method

CreateFunction() static private method

Create function compiled from Function(...) constructor.
Create function compiled from Function(...) constructor.
static private CreateFunction ( Context cx, Scriptable scope, InterpreterData idata, object staticSecurityDomain ) : InterpretedFunction
cx Context
scope Scriptable
idata InterpreterData
staticSecurityDomain object
return InterpretedFunction
		internal static Rhino.InterpretedFunction CreateFunction(Context cx, Scriptable scope, InterpreterData idata, object staticSecurityDomain)
		{
			Rhino.InterpretedFunction f;
			f = new Rhino.InterpretedFunction(idata, staticSecurityDomain);
			f.InitScriptFunction(cx, scope);
			return f;
		}

Same methods

InterpretedFunction::CreateFunction ( Context cx, Scriptable scope, Rhino parent, int index ) : InterpretedFunction