コード例 #1
0
ファイル: DbgCompiler.cs プロジェクト: z77ma/runtime
        public override IfAction CreateIfAction(IfAction.ConditionType type)
        {
            IfAction action = new IfActionDbg(type);

            action.Compile(this);
            return(action);
        }
コード例 #2
0
ファイル: dbgcompiler.cs プロジェクト: ArildF/masters
 public override IfAction CreateIfAction(IfAction.ConditionType type) {
     IfAction action = new IfActionDbg(type);
     action.Compile(this);
     return action;
 }