in instrumentation/src/com/intellij/rt/coverage/instrumentation/filters/lines/KotlinDefaultArgsLineFilter.java [112:127]
public void visitInsn(int opcode) {
super.visitInsn(opcode);
if (myCurrentLine != myFirstLine) return;
if (myState == 2 && opcode == Opcodes.IAND) {
myState = 3;
return;
}
if (myState == 1 && (opcode == Opcodes.ICONST_1 || opcode == Opcodes.ICONST_2 || opcode == Opcodes.ICONST_4)) {
myState = 2;
return;
}
if (myState == 11 && Opcodes.IRETURN <= opcode && opcode <= Opcodes.RETURN) {
return;
}
markHasInstructions();
}