Пример #1
0
        public void AnalyArg(ProcArg argTree, NameTypeParser parser, ZMethodDesc desc)
        {
            //ProcArg argTree = term as ProcArg;
            argTree.ProcContext = this.ProcContext;
            argTree.Analy(parser);
            ZMethodNormalArg procArg = new ZMethodNormalArg(argTree.ArgName, argTree.ArgZType);

            desc.Add(procArg);
            //argIndex++;
        }
Пример #2
0
 public void AddArg(ProcArg arg)
 {
     NameTerms.Add(arg);
 }