mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 17:26:01 +02:00
Fix for 185408, API-compliance of IScope.find(String)
This commit is contained in:
parent
adfede637e
commit
21c0055276
4 changed files with 110 additions and 6 deletions
|
@ -3394,6 +3394,55 @@ public class AST2CPPTests extends AST2BaseTest {
|
||||||
assertSame(bs[1], f1);
|
assertSame(bs[1], f1);
|
||||||
assertSame(bs[2], f2);
|
assertSame(bs[2], f2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// class A {
|
||||||
|
// public:
|
||||||
|
// A();
|
||||||
|
// void f();
|
||||||
|
// };
|
||||||
|
// class B : public A {
|
||||||
|
// public:
|
||||||
|
// B();
|
||||||
|
// void bf();
|
||||||
|
// };
|
||||||
|
public void testFind_bug185408() throws Exception {
|
||||||
|
StringBuffer buffer = getContents(1)[0];
|
||||||
|
|
||||||
|
IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
|
||||||
|
CPPNameCollector col = new CPPNameCollector();
|
||||||
|
tu.accept(col);
|
||||||
|
|
||||||
|
IFunction f1 = (IFunction) col.getName(6).resolveBinding();
|
||||||
|
IScope classScope= f1.getScope();
|
||||||
|
assertTrue(classScope instanceof ICPPClassScope);
|
||||||
|
IBinding[] bindings = classScope.find("bf");
|
||||||
|
ICPPMethod method= extractSingleMethod(bindings);
|
||||||
|
assertEquals(method.getQualifiedName()[0], "B");
|
||||||
|
|
||||||
|
bindings= classScope.find("f");
|
||||||
|
method= extractSingleMethod(bindings);
|
||||||
|
assertEquals(method.getQualifiedName()[0], "A");
|
||||||
|
|
||||||
|
bindings= classScope.find("B");
|
||||||
|
ICPPClassType classType= extractSingleClass(bindings);
|
||||||
|
assertEquals(classType.getQualifiedName()[0], "B");
|
||||||
|
|
||||||
|
bindings= classScope.find("A");
|
||||||
|
classType= extractSingleClass(bindings);
|
||||||
|
assertEquals(classType.getQualifiedName()[0], "A");
|
||||||
|
}
|
||||||
|
|
||||||
|
private ICPPMethod extractSingleMethod(IBinding[] bindings) {
|
||||||
|
assertEquals(1, bindings.length);
|
||||||
|
assertTrue(bindings[0] instanceof ICPPMethod);
|
||||||
|
return (ICPPMethod) bindings[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
private ICPPClassType extractSingleClass(IBinding[] bindings) {
|
||||||
|
assertEquals(1, bindings.length);
|
||||||
|
assertTrue(bindings[0] instanceof ICPPClassType);
|
||||||
|
return (ICPPClassType) bindings[0];
|
||||||
|
}
|
||||||
|
|
||||||
public void testGets() throws Exception {
|
public void testGets() throws Exception {
|
||||||
StringBuffer buffer = new StringBuffer();
|
StringBuffer buffer = new StringBuffer();
|
||||||
|
|
|
@ -20,6 +20,8 @@ import org.eclipse.cdt.core.dom.IName;
|
||||||
import org.eclipse.cdt.core.dom.ast.IASTFileLocation;
|
import org.eclipse.cdt.core.dom.ast.IASTFileLocation;
|
||||||
import org.eclipse.cdt.core.dom.ast.IBinding;
|
import org.eclipse.cdt.core.dom.ast.IBinding;
|
||||||
import org.eclipse.cdt.core.dom.ast.IField;
|
import org.eclipse.cdt.core.dom.ast.IField;
|
||||||
|
import org.eclipse.cdt.core.dom.ast.IScope;
|
||||||
|
import org.eclipse.cdt.core.dom.ast.cpp.ICPPClassScope;
|
||||||
import org.eclipse.cdt.core.dom.ast.cpp.ICPPClassType;
|
import org.eclipse.cdt.core.dom.ast.cpp.ICPPClassType;
|
||||||
import org.eclipse.cdt.core.dom.ast.cpp.ICPPConstructor;
|
import org.eclipse.cdt.core.dom.ast.cpp.ICPPConstructor;
|
||||||
import org.eclipse.cdt.core.dom.ast.cpp.ICPPMethod;
|
import org.eclipse.cdt.core.dom.ast.cpp.ICPPMethod;
|
||||||
|
@ -57,19 +59,32 @@ public class ClassTests extends PDOMTestBase {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void test1() throws Exception {
|
public void test1() throws Exception {
|
||||||
IBinding[] Bs = pdom.findBindings(Pattern.compile("B"), false, IndexFilter.ALL, NPM);
|
IBinding[] Bs = pdom.findBindings(Pattern.compile("B"), true, IndexFilter.ALL, NPM);
|
||||||
assertEquals(1, Bs.length);
|
assertEquals(1, Bs.length);
|
||||||
ICPPClassType B = (ICPPClassType)Bs[0];
|
ICPPClassType B = (ICPPClassType)Bs[0];
|
||||||
ICPPMethod[] Bmethods = B.getAllDeclaredMethods();
|
ICPPMethod[] Bmethods = B.getAllDeclaredMethods();
|
||||||
assertEquals(1, Bmethods.length);
|
assertEquals(4, Bmethods.length);
|
||||||
ICPPMethod Bf = Bmethods[0];
|
assertNotNull(findMethod(Bmethods, "B"));
|
||||||
assertEquals("f", Bf.getName());
|
assertNotNull(findMethod(Bmethods, "A"));
|
||||||
|
assertNotNull(findMethod(Bmethods, "bf"));
|
||||||
|
ICPPMethod Bf = findMethod(Bmethods, "f");
|
||||||
|
assertNotNull(Bf);
|
||||||
IName [] Bf_refs = pdom.findNames(Bf, IIndex.FIND_REFERENCES);
|
IName [] Bf_refs = pdom.findNames(Bf, IIndex.FIND_REFERENCES);
|
||||||
assertEquals(1, Bf_refs.length);
|
assertEquals(1, Bf_refs.length);
|
||||||
IASTFileLocation loc = Bf_refs[0].getFileLocation();
|
IASTFileLocation loc = Bf_refs[0].getFileLocation();
|
||||||
assertEquals(offset("class.cpp", "b.f()") + 2, loc.getNodeOffset());
|
assertEquals(offset("class.cpp", "b.f()") + 2, loc.getNodeOffset());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private ICPPMethod findMethod(ICPPMethod[] bmethods, String name) {
|
||||||
|
for (int i = 0; i < bmethods.length; i++) {
|
||||||
|
ICPPMethod method = bmethods[i];
|
||||||
|
if (method.getName().equals(name)) {
|
||||||
|
return method;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
public void testNested() throws Exception {
|
public void testNested() throws Exception {
|
||||||
IBinding[] bindings = pdom.findBindings(Pattern.compile("NestedA"), false, IndexFilter.ALL, NPM);
|
IBinding[] bindings = pdom.findBindings(Pattern.compile("NestedA"), false, IndexFilter.ALL, NPM);
|
||||||
assertEquals(1, bindings.length);
|
assertEquals(1, bindings.length);
|
||||||
|
@ -181,4 +196,40 @@ public class ClassTests extends PDOMTestBase {
|
||||||
// expecting just D(D &)
|
// expecting just D(D &)
|
||||||
assertEquals(1, bindings.length);
|
assertEquals(1, bindings.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void testClassScope_bug185408() throws Exception {
|
||||||
|
char[][] name= {"B".toCharArray(), "bf".toCharArray()};
|
||||||
|
IBinding[] bindings= pdom.findBindings(name, IndexFilter.ALL, NPM);
|
||||||
|
assertEquals(1, bindings.length);
|
||||||
|
IScope classScope= bindings[0].getScope();
|
||||||
|
|
||||||
|
assertTrue(classScope instanceof ICPPClassScope);
|
||||||
|
bindings= classScope.find("bf");
|
||||||
|
ICPPMethod method= extractSingleMethod(bindings);
|
||||||
|
assertEquals(method.getQualifiedName()[0], "B");
|
||||||
|
|
||||||
|
bindings= classScope.find("f");
|
||||||
|
method= extractSingleMethod(bindings);
|
||||||
|
assertEquals(method.getQualifiedName()[0], "A");
|
||||||
|
|
||||||
|
bindings= classScope.find("B");
|
||||||
|
ICPPClassType classType= extractSingleClass(bindings);
|
||||||
|
assertEquals(classType.getQualifiedName()[0], "B");
|
||||||
|
|
||||||
|
bindings= classScope.find("A");
|
||||||
|
classType= extractSingleClass(bindings);
|
||||||
|
assertEquals(classType.getQualifiedName()[0], "A");
|
||||||
|
}
|
||||||
|
|
||||||
|
private ICPPMethod extractSingleMethod(IBinding[] bindings) {
|
||||||
|
assertEquals(1, bindings.length);
|
||||||
|
assertTrue(bindings[0] instanceof ICPPMethod);
|
||||||
|
return (ICPPMethod) bindings[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
private ICPPClassType extractSingleClass(IBinding[] bindings) {
|
||||||
|
assertEquals(1, bindings.length);
|
||||||
|
assertTrue(bindings[0] instanceof ICPPClassType);
|
||||||
|
return (ICPPClassType) bindings[0];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,14 @@
|
||||||
class A {
|
class A {
|
||||||
public:
|
public:
|
||||||
|
A() {}
|
||||||
void f() {
|
void f() {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class B : public A {
|
class B : public A {
|
||||||
|
public:
|
||||||
|
B() {}
|
||||||
|
void bf() {}
|
||||||
};
|
};
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
|
|
@ -310,7 +310,7 @@ public class CPPClassScope extends CPPScope implements ICPPClassScope {
|
||||||
}
|
}
|
||||||
|
|
||||||
if(CharArrayUtils.equals(compName.toCharArray(), n)) {
|
if(CharArrayUtils.equals(compName.toCharArray(), n)) {
|
||||||
return getConstructors( bindings, true );
|
return new IBinding[] {getClassType()};
|
||||||
}
|
}
|
||||||
|
|
||||||
return super.find(name);
|
return super.find(name);
|
||||||
|
@ -401,7 +401,7 @@ class ImplicitsAnalysis {
|
||||||
|
|
||||||
outer: for(int i=0; i<ctors.length; i++) {
|
outer: for(int i=0; i<ctors.length; i++) {
|
||||||
ICPPASTFunctionDeclarator dcltor= ctors[i];
|
ICPPASTFunctionDeclarator dcltor= ctors[i];
|
||||||
IASTParameterDeclaration [] ps = ((ICPPASTFunctionDeclarator)dcltor).getParameters();
|
IASTParameterDeclaration [] ps = dcltor.getParameters();
|
||||||
if( ps.length >= 1 ){
|
if( ps.length >= 1 ){
|
||||||
if(paramHasTypeReferenceToTheAssociatedClassType(ps[0])) {
|
if(paramHasTypeReferenceToTheAssociatedClassType(ps[0])) {
|
||||||
// and all remaining arguments have initializers
|
// and all remaining arguments have initializers
|
||||||
|
|
Loading…
Add table
Reference in a new issue