Ejemplo n.º 1
0
 public override void DoInstruction(ExpressionMediator exm, InstructionLine func, ProcessState state)
 {
     string keyword = func.Argument.ConstStr;
     if (Config.ICFunction)//1756 BEGINのキーワードは関数扱いらしい
         keyword = keyword.ToUpper();
     state.SetBegin(keyword);
     state.Return(0);
     exm.Console.ResetStyle();
 }