Compile() public method

public Compile ( CompilerEnvirons compilerEnv, ScriptNode tree, string encodedSource, bool returnFunction ) : InterpreterData
compilerEnv CompilerEnvirons
tree Rhino.Ast.ScriptNode
encodedSource string
returnFunction bool
return InterpreterData
Esempio n. 1
0
		public object Compile(CompilerEnvirons compilerEnv, ScriptNode tree, string encodedSource, bool returnFunction)
		{
			CodeGenerator cgen = new CodeGenerator();
			itsData = cgen.Compile(compilerEnv, tree, encodedSource, returnFunction);
			return itsData;
		}