IDEA-138578 Debugger spuriously jumps to decompiled method signature

This commit is contained in:
Egor.Ushakov
2015-04-14 12:31:28 +03:00
parent 262d580ccc
commit 44ba5816f2
9 changed files with 146 additions and 14 deletions

View File

@@ -89,7 +89,7 @@ public class IfExprent extends Exprent {
condition = stack.pop();
}
else {
condition = new FunctionExprent(FUNC_TYPES[ifType], stack, null);
condition = new FunctionExprent(FUNC_TYPES[ifType], stack, bytecodeOffsets);
}
}