Bug 51507 - Step into selection leaves invisible breakpoint
Summary: Step into selection leaves invisible breakpoint
Status: RESOLVED DUPLICATE of bug 36914
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Debug (show other bugs)
Version: 3.0   Edit
Hardware: PC Windows 2000
: P3 normal (vote)
Target Milestone: 3.0   Edit
Assignee: JDT-Debug-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords: readme
Depends on:
Blocks:
 
Reported: 2004-02-10 13:44 EST by Darin Swanson CLA
Modified: 2004-05-10 11:55 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Darin Swanson CLA 2004-02-10 13:44:26 EST
I was debugging code like:

if (action == null) {
	action= (IAction) fActions.remove(actionID);
	if (action != null)
			
	fActivationCodeTrigger.unregisterActionFromKeyActivation(action);
} else {
	fActions.put(actionID, action);
	fActivationCodeTrigger.registerActionForKeyActivation(action);
}

and I was on code before this if/esle block.
I set the cursor on the remove call for when the action is null and said Step 
into Selection. The action was not null so I never hit the step into selection.

I continued debugger and then magically suspended claiming I had hit a run to 
line breakpoint.
Comment 1 Jared Burns CLA 2004-02-10 17:06:37 EST
This is the same limitation that Run To Line has (in fact, it's the same code). We should add this to 
the ReadMe.
Comment 2 Jared Burns CLA 2004-02-10 20:23:05 EST
I don't know where the readme file is. :-) Any help, DarinW?
Comment 3 Darin Wright CLA 2004-02-12 11:51:44 EST
The read-me file is owned by Jim des Rivieres. Jim, does the 3.0 release 
readme file exist in a plug-in somewhere?
Comment 4 Jim des Rivieres CLA 2004-02-12 17:41:31 EST
The 3.0 release note document have not been started yet. Please write the 
release note text, paste it into this problem report, and tag the report with 
keyword "readme".
Comment 5 Darin Wright CLA 2004-02-13 16:45:32 EST
Add to 3.0 readme notes.
Comment 6 Darin Wright CLA 2004-03-26 17:12:49 EST
I believe this is just a dup of bug 36914. If the program suspends before the 
step into selection, it should be cancelled. If the program does not suspend 
before the step into selection (but arrives much later) - then so be it.
Comment 7 Darin Wright CLA 2004-05-10 11:55:15 EDT

*** This bug has been marked as a duplicate of 36914 ***