I am working on a Java application and there are certain classes which are more than 60K lines of code. One challenge we always face is navigating thru debugger when lines cross 60K during debugging. When 60K is crossed, the debugger stops showing the code and values. One way we overcome this is to move the impacted function above 60K lines and then put the debugger again, but this process is inconvenient at times.
Question:
Where is the limitation, is it eclipse or java or something else which doesn't allow debugger to function properly beyond 60K ?