Axiom.Scripting.Compiler.ScriptCompilerListener.PostConversion C# (CSharp) Method

PostConversion() public method

Allows vetoing of continued compilation after the entire AST conversion process finishes
Once the script is turned completely into an AST, including import and override handling, this function allows a listener to exit the compilation process.
public PostConversion ( ScriptCompiler compiler, IList nodes ) : bool
compiler ScriptCompiler A reference to the compiler
nodes IList
return bool
		public virtual bool PostConversion( ScriptCompiler compiler, IList<AbstractNode> nodes )
		{
			return true;
		}