290291292293294295296297298299300
} LabelNode noMatch = new LabelNode("no_match"); LabelNode end = new LabelNode("end"); return block .append(new JumpInstruction(noMatchJumpInstruction, noMatch)) .push(true) .gotoLabel(end) .append(noMatch) .push(false) .append(end);