Пример #1
0
            public object DoForArg(ArgAST arg, object options = null)
            {
                ObjArg oa = new ObjArg();

                oa.parent = curParent;
                oa.name   = arg.name;
                oa.llName = NextLabel();
                oa.type   = (ObjType)arg.typeAST.Accept(this, options);
                return(oa);
            }
Пример #2
0
 public object DoForArg(ArgAST arg, object options = null)
 {
     PositionOutput(arg.token.indent);
     ConsoleEx.WriteLine("{0}(Arg) {1}{2}", ConsoleColor.DarkBlue, ConsoleColor.Gray, arg.token.value);
     return(options);
 }