Axiom.Scripting.Compiler.ScriptCompiler.Compile C# (CSharp) Method

Compile() public method

public Compile ( IList nodes, string group ) : bool
nodes IList
group string
return bool
		public bool Compile( IList<AbstractNode> nodes, string group )
		{
			return this.Compile( nodes, group, true, true, true );
		}

Same methods

ScriptCompiler::Compile ( IList nodes, string group, bool doImports ) : bool
ScriptCompiler::Compile ( IList nodes, string group, bool doImports, bool doObjects ) : bool
ScriptCompiler::Compile ( IList nodes, string group, bool doImports, bool doObjects, bool doVariables ) : bool
ScriptCompiler::Compile ( IList nodes, string group ) : bool
ScriptCompiler::Compile ( String script, String source, String group ) : bool