public void Branch(bool condition, Label target) { Branch(Opcode.Branch(condition, longForm: true), target); }
public void Branch(Comparison comparison, Label target) { Branch(Opcode.Branch(comparison, longForm: true), target); }