예제 #1
0
        public void Run(List<StillOneScriptCore.Parser.Lexer.Token> list)
        {
            var tmpContext = new SyntaxerContext(list);

            var tmpMainLeaf = new Syntaxer.SkeletonLeafs.FunctionLeafs.MainLeaf(tmpContext);

            tmpMainLeaf.Run();

            mResult = tmpMainLeaf.Result;
        }
예제 #2
0
 protected BaseLeaf(SyntaxerContext context)
 {
     mContext = context;
 }