Example #1
0
 public override void ExitStat([NotNull] InterpreterParser.StatContext context)
 {
     rootQuery.Exec();
     if (!fade)
     {
         rootQuery.Output();
     }
 }
Example #2
0
        //以下函数表示进入/退出某一个语法的事件

        public override void EnterStat([NotNull] InterpreterParser.StatContext context)
        {
            rootQuery = new PreQuery(session);
        }