Bug 28316 - Missing references to constructor
Summary: Missing references to constructor
Status: VERIFIED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 2.1   Edit
Hardware: PC Windows 2000
: P3 normal (vote)
Target Milestone: 2.1 M4   Edit
Assignee: Jerome Lanneluc CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-12-14 03:06 EST by Jerome Lanneluc CLA
Modified: 2002-12-18 05:33 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jerome Lanneluc CLA 2002-12-14 03:06:26 EST
Build 20021213

1. Open search dialog
2. Type in 'Parser'
3. Choose Constructor references
4. Search 
Observe: Only 2 references are found in SourceElementParser constructors
Comment 1 Jerome Lanneluc CLA 2002-12-14 10:19:12 EST
Simple test case.
Define X.java in package x:

package x;
public class X {
X(String s) {
}
void foo() {
	new X("");
}
}
Comment 2 Jerome Lanneluc CLA 2002-12-14 10:25:40 EST
CharOperation.match("*x".toCharArray(), "x.X".toCharArray(), false) returns 
false.
Comment 3 Jerome Lanneluc CLA 2002-12-16 06:33:32 EST
Fixed CharOperation and added regression test UtilTest.test47()
Comment 4 David Audel CLA 2002-12-18 05:33:13 EST
Verified.