Exemplo n.º 1
0
 public void Branch(bool condition, Label target)
 {
     Branch(Opcode.Branch(condition, longForm: true), target);
 }
Exemplo n.º 2
0
 public void Branch(Comparison comparison, Label target)
 {
     Branch(Opcode.Branch(comparison, longForm: true), target);
 }