示例#1
0
文件: compiler.cs 项目: ydunk/masters
        public virtual ForEachAction CreateForEachAction()
        {
            ForEachAction action = new ForEachAction();

            action.Compile(this);
            return(action);
        }
示例#2
0
 public virtual ForEachAction CreateForEachAction() {
     ForEachAction action = new ForEachAction();
     action.Compile(this);
     return action;
 }