コード例 #1
0
 public void EmitSub(Type type, bool @checked)
 {
     if (@checked)
     {
         Emit(SubOvfInstruction.Create(type));
     }
     else
     {
         Emit(SubInstruction.Create(type));
     }
 }
コード例 #2
0
ファイル: InstructionList.cs プロジェクト: modulexcite/pash-1
 public void EmitSub(Type type, bool @checked)
 {
     if (!@checked)
     {
         this.Emit(SubInstruction.Create(type));
         return;
     }
     else
     {
         this.Emit(SubOvfInstruction.Create(type));
         return;
     }
 }