Bug 237125 - [editor] Identifiers used in pointcuts are not highlighted when text matching that identifier is selected
Summary: [editor] Identifiers used in pointcuts are not highlighted when text matching...
Status: NEW
Alias: None
Product: AJDT
Classification: Tools
Component: UI (show other bugs)
Version: unspecified   Edit
Hardware: Macintosh All
: P3 minor (vote)
Target Milestone: ---   Edit
Assignee: Andrew Eisenberg CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-06-13 13:48 EDT by Andrew Eisenberg CLA
Modified: 2008-06-13 14:25 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 Andrew Eisenberg CLA 2008-06-13 13:48:59 EDT
eg in the following class-

package stuff;
public class Highlighting {
	private void method() { }
	static aspect Foo {
		pointcut a () : execution (private void Highlighting.method());
		before () : a() {
			new Highlighting().method();
		}
	} 
}

when the cursor is located on the declaration of method(), the uses of method() in the a() pointcut should be highlighted.

The highlighting of method() in the advice body is working properly, however.

This bug was originally reported as part of bug 118148.