Rhino.InterpretedFunction.CreateScript C# (CSharp) Method

CreateScript() static private method

Create script from compiled bytecode.
Create script from compiled bytecode.
static private CreateScript ( InterpreterData idata, object staticSecurityDomain ) : InterpretedFunction
idata InterpreterData
staticSecurityDomain object
return InterpretedFunction
		internal static Rhino.InterpretedFunction CreateScript(InterpreterData idata, object staticSecurityDomain)
		{
			Rhino.InterpretedFunction f;
			f = new Rhino.InterpretedFunction(idata, staticSecurityDomain);
			return f;
		}