private static boolean isReturnInstruction()

in src/main/java/com/intellij/rt/debugger/agent/CollectionBreakpointInstrumentor.java [570:574]


    private static boolean isReturnInstruction(int opcode) {
      return opcode == Opcodes.RETURN || opcode == Opcodes.ARETURN ||
             opcode == Opcodes.IRETURN || opcode == Opcodes.LRETURN ||
             opcode == Opcodes.DRETURN || opcode == Opcodes.FRETURN;
    }