Custom Parsers
public interface IScriptParser
{
ASTNode Parse(string script);
}Sal.Interpreter.Parser = new MyParser();XSalScript.Interpreter.Parser = new MyParser();PPJ.Runtime.Scriping.ScriptEngine.DefaultParserType = typeof(MyParser);Last updated
Was this helpful?