예제 #1
0
 public void EmitBranch(bool not = false)
 {
     _generator
     .EmitIf(!not, a => a.Brfalse(_ifFalse))
     .EmitIf(not, a => a.Brtrue(_ifFalse));
 }
예제 #2
0
 public void EmitBranch(bool not = false)
 {
     generatorField
     .EmitIf(!not, a => a.Brfalse(ifFalseField))
     .EmitIf(not, a => a.Brtrue(ifFalseField));
 }