Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-debug-dev] Displaying statement rather than line when debugger stops

When the debugger stops we need to have the statement marked not the whole
line.   Similar to what VAJ used to do.

For this to happen,
org.eclipse.debug.internal.ui.DebugView.showMarkerForCurrentSelection()
needs to change.  Currently this function just asks the stackframe for the
current line and then passes -1 for the charStart and charEnd parameters of
openEditorAndSetMarker().



Maybe showMarkerForCurrentSelection() could also ask the stackframe for the
charStart and charEnd values (new methods would be required for this) and
then pass these stackframe supplied values to openEditorAndSetMarker()
instead of -1.



Alan Boxall - IBM Distributed Debugger



Back to the top