1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Added test.

This commit is contained in:
John Camelon 2005-05-25 17:40:35 +00:00
parent 5995f1cd0f
commit fb70c25e85

View file

@ -1039,9 +1039,9 @@ public class AST2CPPTests extends AST2BaseTest {
assertEquals(ctors[0].getParameters().length, 1); assertEquals(ctors[0].getParameters().length, 1);
IType t = ctors[0].getParameters()[0].getType(); IType t = ctors[0].getParameters()[0].getType();
assertTrue( t instanceof IBasicType ); assertTrue(t instanceof IBasicType);
assertEquals( ((IBasicType)t).getType(), IBasicType.t_void ); assertEquals(((IBasicType) t).getType(), IBasicType.t_void);
assertEquals(ctors[1].getParameters().length, 1); assertEquals(ctors[1].getParameters().length, 1);
@ -3644,8 +3644,10 @@ public class AST2CPPTests extends AST2BaseTest {
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPConstructor ctor1 = (ICPPConstructor) col.getName(1).resolveBinding(); ICPPConstructor ctor1 = (ICPPConstructor) col.getName(1)
ICPPConstructor ctor = (ICPPConstructor) col.getName(11).resolveBinding(); .resolveBinding();
ICPPConstructor ctor = (ICPPConstructor) col.getName(11)
.resolveBinding();
assertSame(ctor, ctor1); assertSame(ctor, ctor1);
} }
@ -3917,60 +3919,61 @@ public class AST2CPPTests extends AST2BaseTest {
buffer.append("int k;\n"); //$NON-NLS-1$ buffer.append("int k;\n"); //$NON-NLS-1$
buffer.append("k = sum;\n"); //$NON-NLS-1$ buffer.append("k = sum;\n"); //$NON-NLS-1$
buffer.append("}\n"); //$NON-NLS-1$ buffer.append("}\n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
assertNoProblemBindings( col ); assertNoProblemBindings(col);
} }
public void testBug77385() throws Exception { public void testBug77385() throws Exception {
StringBuffer buffer = new StringBuffer( "int main(int argc, char *argv[])\n" ); //$NON-NLS-1$ StringBuffer buffer = new StringBuffer(
buffer.append( "{\n" ); //$NON-NLS-1$ "int main(int argc, char *argv[])\n"); //$NON-NLS-1$
buffer.append( " unsigned long l = 0;\n" ); //$NON-NLS-1$ buffer.append("{\n"); //$NON-NLS-1$
buffer.append( "char *c;\n" ); //$NON-NLS-1$ buffer.append(" unsigned long l = 0;\n"); //$NON-NLS-1$
buffer.append( "l |= ((unsigned long)(*((c)++)))<<24;\n" ); //$NON-NLS-1$ buffer.append("char *c;\n"); //$NON-NLS-1$
buffer.append( "}\n" ); //$NON-NLS-1$ buffer.append("l |= ((unsigned long)(*((c)++)))<<24;\n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); buffer.append("}\n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
assertNoProblemBindings( col ); assertNoProblemBindings(col);
} }
public void testBug83997() throws Exception { public void testBug83997() throws Exception {
IASTTranslationUnit tu = parse( "namespace { int x; }", ParserLanguage.CPP ); //$NON-NLS-1$ IASTTranslationUnit tu = parse(
"namespace { int x; }", ParserLanguage.CPP); //$NON-NLS-1$
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
assertNoProblemBindings( col ); assertNoProblemBindings(col);
} }
protected void assertNoProblemBindings(CPPNameCollector col) { protected void assertNoProblemBindings(CPPNameCollector col) {
Iterator i = col.nameList.iterator(); Iterator i = col.nameList.iterator();
while( i.hasNext() ) while (i.hasNext()) {
{
IASTName n = (IASTName) i.next(); IASTName n = (IASTName) i.next();
assertFalse( n.resolveBinding() instanceof IProblemBinding ); assertFalse(n.resolveBinding() instanceof IProblemBinding);
} }
} }
protected void assertProblemBindings(CPPNameCollector col, int count ) { protected void assertProblemBindings(CPPNameCollector col, int count) {
Iterator i = col.nameList.iterator(); Iterator i = col.nameList.iterator();
int sum = 0; int sum = 0;
while( i.hasNext() ) while (i.hasNext()) {
{
IASTName n = (IASTName) i.next(); IASTName n = (IASTName) i.next();
assertNotNull( n.resolveBinding()); assertNotNull(n.resolveBinding());
if( n.getBinding() instanceof IProblemBinding ) if (n.getBinding() instanceof IProblemBinding)
++sum; ++sum;
} }
assertEquals( count, sum ); assertEquals(count, sum);
} }
public void testBug85786() throws Exception { public void testBug85786() throws Exception {
IASTTranslationUnit tu = parse( "void f( int ); void foo () { void * p = &f; ( (void (*) (int)) p ) ( 1 ); }", ParserLanguage.C ); //$NON-NLS-1$ IASTTranslationUnit tu = parse(
"void f( int ); void foo () { void * p = &f; ( (void (*) (int)) p ) ( 1 ); }", ParserLanguage.C); //$NON-NLS-1$
CPPNameCollector nameResolver = new CPPNameCollector(); CPPNameCollector nameResolver = new CPPNameCollector();
tu.accept( nameResolver ); tu.accept(nameResolver);
assertNoProblemBindings( nameResolver ); assertNoProblemBindings(nameResolver);
} }
public void testBug90610() throws Exception { public void testBug90610() throws Exception {
@ -3981,14 +3984,14 @@ public class AST2CPPTests extends AST2BaseTest {
buffer.append("}; \n"); //$NON-NLS-1$ buffer.append("}; \n"); //$NON-NLS-1$
buffer.append("int C::arr[n]; \n"); //$NON-NLS-1$ buffer.append("int C::arr[n]; \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPField n = (ICPPField) col.getName(1).resolveBinding(); ICPPField n = (ICPPField) col.getName(1).resolveBinding();
assertTrue( n.isStatic() ); assertTrue(n.isStatic());
assertInstances( col, n, 3 ); assertInstances(col, n, 3);
} }
public void testDeclDefn() throws Exception { public void testDeclDefn() throws Exception {
@ -4008,84 +4011,85 @@ public class AST2CPPTests extends AST2BaseTest {
buffer.append("int ( *g(int) )(int); \n"); //$NON-NLS-1$ buffer.append("int ( *g(int) )(int); \n"); //$NON-NLS-1$
buffer.append("int ( *pf)(int); \n"); //$NON-NLS-1$ buffer.append("int ( *pf)(int); \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
assertTrue( col.getName(0).isDefinition() ); //a assertTrue(col.getName(0).isDefinition()); // a
assertFalse( col.getName(1).isDefinition() ); //b assertFalse(col.getName(1).isDefinition()); // b
assertTrue( col.getName(2).isDefinition() ); //c assertTrue(col.getName(2).isDefinition()); // c
assertFalse( col.getName(3).isDefinition() ); //f () assertFalse(col.getName(3).isDefinition()); // f ()
assertTrue( col.getName(4).isDefinition() ); //f () {} assertTrue(col.getName(4).isDefinition()); // f () {}
assertTrue( col.getName(5).isDefinition() ); //p assertTrue(col.getName(5).isDefinition()); // p
assertFalse( col.getName(6).isDefinition() ); //struct S; assertFalse(col.getName(6).isDefinition()); // struct S;
assertTrue( col.getName(7).isDefinition() ); //struct S {} assertTrue(col.getName(7).isDefinition()); // struct S {}
assertTrue( col.getName(8).isDefinition() ); //d assertTrue(col.getName(8).isDefinition()); // d
assertTrue( col.getName(9).isDefinition() ); //X assertTrue(col.getName(9).isDefinition()); // X
assertFalse( col.getName(10).isDefinition() ); //y assertFalse(col.getName(10).isDefinition()); // y
assertTrue( col.getName(11).isDefinition() ); //N assertTrue(col.getName(11).isDefinition()); // N
assertTrue( col.getName(12).isDefinition() ); //X::y assertTrue(col.getName(12).isDefinition()); // X::y
assertFalse( col.getName(15).isDefinition() ); //g assertFalse(col.getName(15).isDefinition()); // g
assertTrue( col.getName(18).isDefinition() ); //pf assertTrue(col.getName(18).isDefinition()); // pf
} }
public void testBug95200() throws Exception { public void testBug95200() throws Exception {
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append( "int f(double); \n"); //$NON-NLS-1$ buffer.append("int f(double); \n"); //$NON-NLS-1$
buffer.append( "int f(int); \n"); //$NON-NLS-1$ buffer.append("int f(int); \n"); //$NON-NLS-1$
buffer.append( "int (&rfi)(int) = f; \n"); //$NON-NLS-1$ buffer.append("int (&rfi)(int) = f; \n"); //$NON-NLS-1$
buffer.append( "int (&rfd)(double) = f; \n"); //$NON-NLS-1$ buffer.append("int (&rfd)(double) = f; \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPFunction f1 = (ICPPFunction) col.getName(0).resolveBinding(); ICPPFunction f1 = (ICPPFunction) col.getName(0).resolveBinding();
ICPPFunction f2 = (ICPPFunction) col.getName(2).resolveBinding(); ICPPFunction f2 = (ICPPFunction) col.getName(2).resolveBinding();
assertSame( col.getName(6).resolveBinding(), f2 ); assertSame(col.getName(6).resolveBinding(), f2);
assertSame( col.getName(9).resolveBinding(), f1 ); assertSame(col.getName(9).resolveBinding(), f1);
} }
public void testBug95425() throws Exception { public void testBug95425() throws Exception {
IASTTranslationUnit tu = parse( "class A { A(); };", ParserLanguage.CPP ); //$NON-NLS-1$ IASTTranslationUnit tu = parse("class A { A(); };", ParserLanguage.CPP); //$NON-NLS-1$
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPClassType A = (ICPPClassType) col.getName(0).resolveBinding(); ICPPClassType A = (ICPPClassType) col.getName(0).resolveBinding();
ICPPConstructor ctor = (ICPPConstructor) col.getName(1).resolveBinding(); ICPPConstructor ctor = (ICPPConstructor) col.getName(1)
.resolveBinding();
ICPPConstructor [] ctors = A.getConstructors(); ICPPConstructor[] ctors = A.getConstructors();
assertEquals( ctors.length, 2 ); assertEquals(ctors.length, 2);
assertSame( ctor, ctors[0] ); assertSame(ctor, ctors[0]);
tu = parse( "class A { A( void ); };", ParserLanguage.CPP ); //$NON-NLS-1$ tu = parse("class A { A( void ); };", ParserLanguage.CPP); //$NON-NLS-1$
col = new CPPNameCollector(); col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
A = (ICPPClassType) col.getName(0).resolveBinding(); A = (ICPPClassType) col.getName(0).resolveBinding();
ctor = (ICPPConstructor) col.getName(1).resolveBinding(); ctor = (ICPPConstructor) col.getName(1).resolveBinding();
ctors = A.getConstructors(); ctors = A.getConstructors();
assertEquals( ctors.length, 2 ); assertEquals(ctors.length, 2);
assertSame( ctor, ctors[0] ); assertSame(ctor, ctors[0]);
} }
public void testBug95461() throws Exception { public void testBug95461() throws Exception {
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append("void f( char * ); \n"); //$NON-NLS-1$ buffer.append("void f( char * ); \n"); //$NON-NLS-1$
buffer.append("void g(){ \n"); //$NON-NLS-1$ buffer.append("void g(){ \n"); //$NON-NLS-1$
buffer.append(" char x[100]; \n"); //$NON-NLS-1$ buffer.append(" char x[100]; \n"); //$NON-NLS-1$
buffer.append(" f( x ); \n"); //$NON-NLS-1$ buffer.append(" f( x ); \n"); //$NON-NLS-1$
buffer.append("} \n"); //$NON-NLS-1$ buffer.append("} \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPFunction f1 = (ICPPFunction) col.getName(0).resolveBinding(); ICPPFunction f1 = (ICPPFunction) col.getName(0).resolveBinding();
assertSame( f1, col.getName(4).resolveBinding() ); assertSame(f1, col.getName(4).resolveBinding());
} }
public void testAmbiguity() throws Exception { public void testAmbiguity() throws Exception {
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
@ -4193,13 +4197,13 @@ public class AST2CPPTests extends AST2BaseTest {
assertFalse(col.getName(0).isReference()); assertFalse(col.getName(0).isReference());
} }
public void testPointerToFunction_CPP() throws Exception public void testPointerToFunction_CPP() throws Exception {
{
IASTTranslationUnit tu = parse("int (*pfi)();", ParserLanguage.CPP); //$NON-NLS-1$ IASTTranslationUnit tu = parse("int (*pfi)();", ParserLanguage.CPP); //$NON-NLS-1$
assertEquals(tu.getDeclarations().length, 1); assertEquals(tu.getDeclarations().length, 1);
IASTSimpleDeclaration d = (IASTSimpleDeclaration) tu.getDeclarations()[0]; IASTSimpleDeclaration d = (IASTSimpleDeclaration) tu.getDeclarations()[0];
assertEquals(d.getDeclarators().length, 1); assertEquals(d.getDeclarators().length, 1);
IASTStandardFunctionDeclarator f = (IASTStandardFunctionDeclarator) d.getDeclarators()[0]; IASTStandardFunctionDeclarator f = (IASTStandardFunctionDeclarator) d
.getDeclarators()[0];
assertEquals(f.getName().toString(), ""); assertEquals(f.getName().toString(), "");
assertNotNull(f.getNestedDeclarator()); assertNotNull(f.getNestedDeclarator());
assertEquals(f.getNestedDeclarator().getName().toString(), "pfi"); //$NON-NLS-1$ assertEquals(f.getNestedDeclarator().getName().toString(), "pfi"); //$NON-NLS-1$
@ -4213,137 +4217,145 @@ public class AST2CPPTests extends AST2BaseTest {
buffer.append(" a[0].bar; \n"); //$NON-NLS-1$ buffer.append(" a[0].bar; \n"); //$NON-NLS-1$
buffer.append("} \n"); //$NON-NLS-1$ buffer.append("} \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPField bar = (ICPPField) col.getName(1).resolveBinding(); ICPPField bar = (ICPPField) col.getName(1).resolveBinding();
assertSame( bar, col.getName(6).resolveBinding() ); assertSame(bar, col.getName(6).resolveBinding());
} }
public void testBug95419() throws Exception {
StringBuffer buffer = new StringBuffer();
buffer.append("int strcmp( const char * ); \n"); //$NON-NLS-1$
buffer.append("void f( const char * const * argv ){ \n"); //$NON-NLS-1$
buffer.append(" strcmp( *argv ); \n"); //$NON-NLS-1$
buffer.append("} \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); public void testBug95419() throws Exception {
StringBuffer buffer = new StringBuffer();
buffer.append("int strcmp( const char * ); \n"); //$NON-NLS-1$
buffer.append("void f( const char * const * argv ){ \n"); //$NON-NLS-1$
buffer.append(" strcmp( *argv ); \n"); //$NON-NLS-1$
buffer.append("} \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPFunction strcmp = (ICPPFunction) col.getName(0).resolveBinding(); ICPPFunction strcmp = (ICPPFunction) col.getName(0).resolveBinding();
assertSame( strcmp, col.getName(4).resolveBinding() ); assertSame(strcmp, col.getName(4).resolveBinding());
} }
public void testBug95673() throws Exception { public void testBug95673() throws Exception {
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append("class Other; \n"); //$NON-NLS-1$ buffer.append("class Other; \n"); //$NON-NLS-1$
buffer.append("class Base { \n"); //$NON-NLS-1$ buffer.append("class Base { \n"); //$NON-NLS-1$
buffer.append(" public: Base( Other * ); \n"); //$NON-NLS-1$ buffer.append(" public: Base( Other * ); \n"); //$NON-NLS-1$
buffer.append("}; \n"); //$NON-NLS-1$ buffer.append("}; \n"); //$NON-NLS-1$
buffer.append("class Sub : public Base { \n"); //$NON-NLS-1$ buffer.append("class Sub : public Base { \n"); //$NON-NLS-1$
buffer.append(" public: Sub( Other * ); \n"); //$NON-NLS-1$ buffer.append(" public: Sub( Other * ); \n"); //$NON-NLS-1$
buffer.append("}; \n"); //$NON-NLS-1$ buffer.append("}; \n"); //$NON-NLS-1$
buffer.append("Sub::Sub( Other * b ) : Base(b) {} \n"); //$NON-NLS-1$ buffer.append("Sub::Sub( Other * b ) : Base(b) {} \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPConstructor ctor = (ICPPConstructor) col.getName(2).resolveBinding(); ICPPConstructor ctor = (ICPPConstructor) col.getName(2)
assertSame( ctor, col.getName(15).resolveBinding() ); .resolveBinding();
} assertSame(ctor, col.getName(15).resolveBinding());
}
public void testBug95768() throws Exception { public void testBug95768() throws Exception {
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append("void mem( void *, const void * ); \n"); //$NON-NLS-1$ buffer
buffer.append("void f() { \n"); //$NON-NLS-1$ .append("void mem( void *, const void * ); \n"); //$NON-NLS-1$
buffer.append(" char *x; int offset; \n"); //$NON-NLS-1$ buffer
buffer.append(" mem( x, \"FUNC\" ); \n"); //$NON-NLS-1$ .append("void f() { \n"); //$NON-NLS-1$
buffer.append(" mem( x + offset, \"FUNC2\" ); \n"); //$NON-NLS-1$ buffer
buffer.append("} \n"); //$NON-NLS-1$ .append(" char *x; int offset; \n"); //$NON-NLS-1$
buffer
.append(" mem( x, \"FUNC\" ); \n"); //$NON-NLS-1$
buffer
.append(" mem( x + offset, \"FUNC2\" ); \n"); //$NON-NLS-1$
buffer
.append("} \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPFunction mem = (ICPPFunction) col.getName(0).resolveBinding(); ICPPFunction mem = (ICPPFunction) col.getName(0).resolveBinding();
assertSame( mem, col.getName(6).resolveBinding() ); assertSame(mem, col.getName(6).resolveBinding());
assertSame( mem, col.getName(8).resolveBinding() ); assertSame(mem, col.getName(8).resolveBinding());
} }
public void testBug95741() throws Exception { public void testBug95741() throws Exception {
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append("void trace( const void * ); \n"); //$NON-NLS-1$ buffer.append("void trace( const void * ); \n"); //$NON-NLS-1$
buffer.append("class Foo { \n"); //$NON-NLS-1$ buffer.append("class Foo { \n"); //$NON-NLS-1$
buffer.append(" public: int import(); \n"); //$NON-NLS-1$ buffer.append(" public: int import(); \n"); //$NON-NLS-1$
buffer.append("}; \n"); //$NON-NLS-1$ buffer.append("}; \n"); //$NON-NLS-1$
buffer.append("int Foo::import(){ \n"); //$NON-NLS-1$ buffer.append("int Foo::import(){ \n"); //$NON-NLS-1$
buffer.append(" trace( this ); \n"); //$NON-NLS-1$ buffer.append(" trace( this ); \n"); //$NON-NLS-1$
buffer.append("} \n"); //$NON-NLS-1$ buffer.append("} \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPFunction trace = (ICPPFunction) col.getName(0).resolveBinding(); ICPPFunction trace = (ICPPFunction) col.getName(0).resolveBinding();
assertSame( trace, col.getName(7).resolveBinding() ); assertSame(trace, col.getName(7).resolveBinding());
} }
public void testBug95692() throws Exception { public void testBug95692() throws Exception {
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append("class RTCharacter { \n"); //$NON-NLS-1$ buffer.append("class RTCharacter { \n"); //$NON-NLS-1$
buffer.append(" char value; \n"); //$NON-NLS-1$ buffer.append(" char value; \n"); //$NON-NLS-1$
buffer.append(" public: operator char (void) const; \n"); //$NON-NLS-1$ buffer.append(" public: operator char (void) const; \n"); //$NON-NLS-1$
buffer.append("}; \n"); //$NON-NLS-1$ buffer.append("}; \n"); //$NON-NLS-1$
buffer.append("RTCharacter::operator char( void )const { \n"); //$NON-NLS-1$ buffer.append("RTCharacter::operator char( void )const { \n"); //$NON-NLS-1$
buffer.append(" return value; \n"); //$NON-NLS-1$ buffer.append(" return value; \n"); //$NON-NLS-1$
buffer.append("} \n"); //$NON-NLS-1$ buffer.append("} \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPMethod op = (ICPPMethod) col.getName(2).resolveBinding(); ICPPMethod op = (ICPPMethod) col.getName(2).resolveBinding();
assertSame( op, col.getName(6).resolveBinding() ); assertSame(op, col.getName(6).resolveBinding());
} }
public void testBug95734() throws Exception { public void testBug95734() throws Exception {
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append("int str( const char * ); \n"); //$NON-NLS-1$ buffer.append("int str( const char * ); \n"); //$NON-NLS-1$
buffer.append("void f(){ \n"); //$NON-NLS-1$ buffer.append("void f(){ \n"); //$NON-NLS-1$
buffer.append(" str( 0 ); \n"); //$NON-NLS-1$ buffer.append(" str( 0 ); \n"); //$NON-NLS-1$
buffer.append(" str( 00 ); str( 0x0 ); \n"); //$NON-NLS-1$ buffer.append(" str( 00 ); str( 0x0 ); \n"); //$NON-NLS-1$
buffer.append("} \n"); //$NON-NLS-1$ buffer.append("} \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPFunction str = (ICPPFunction) col.getName(0).resolveBinding(); ICPPFunction str = (ICPPFunction) col.getName(0).resolveBinding();
assertSame( str, col.getName(3).resolveBinding() ); assertSame(str, col.getName(3).resolveBinding());
assertSame( str, col.getName(4).resolveBinding() ); assertSame(str, col.getName(4).resolveBinding());
assertSame( str, col.getName(5).resolveBinding() ); assertSame(str, col.getName(5).resolveBinding());
} }
public void testBug95734_2() throws Exception { public void testBug95734_2() throws Exception {
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append("int str( bool ); \n"); //$NON-NLS-1$ buffer.append("int str( bool ); \n"); //$NON-NLS-1$
buffer.append("enum { ONE }; \n"); //$NON-NLS-1$ buffer.append("enum { ONE }; \n"); //$NON-NLS-1$
buffer.append("void f( char * p ){ \n"); //$NON-NLS-1$ buffer.append("void f( char * p ){ \n"); //$NON-NLS-1$
buffer.append(" str( 1.2 ); \n"); //$NON-NLS-1$ buffer.append(" str( 1.2 ); \n"); //$NON-NLS-1$
buffer.append(" str( ONE ); str( p ); \n"); //$NON-NLS-1$ buffer.append(" str( ONE ); str( p ); \n"); //$NON-NLS-1$
buffer.append("} \n"); //$NON-NLS-1$ buffer.append("} \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPFunction str = (ICPPFunction) col.getName(0).resolveBinding(); ICPPFunction str = (ICPPFunction) col.getName(0).resolveBinding();
assertSame( str, col.getName(6).resolveBinding() ); assertSame(str, col.getName(6).resolveBinding());
assertSame( str, col.getName(7).resolveBinding() ); assertSame(str, col.getName(7).resolveBinding());
assertSame( str, col.getName(9).resolveBinding() ); assertSame(str, col.getName(9).resolveBinding());
} }
public void testBug95786() throws Exception { public void testBug95786() throws Exception {
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
@ -4352,12 +4364,12 @@ public class AST2CPPTests extends AST2BaseTest {
buffer.append("::operator delete(value);\n"); //$NON-NLS-1$ buffer.append("::operator delete(value);\n"); //$NON-NLS-1$
buffer.append("}\n"); //$NON-NLS-1$ buffer.append("}\n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
assertFalse( col.getName(2).resolveBinding() instanceof IProblemBinding); assertFalse(col.getName(2).resolveBinding() instanceof IProblemBinding);
} }
public void testBug86868() throws Exception { public void testBug86868() throws Exception {
@ -4371,55 +4383,73 @@ public class AST2CPPTests extends AST2BaseTest {
buffer.append("{\n"); //$NON-NLS-1$ buffer.append("{\n"); //$NON-NLS-1$
buffer.append("}\n"); //$NON-NLS-1$ buffer.append("}\n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
assertEquals(tu.getDeclarations().length, 1); assertEquals(tu.getDeclarations().length, 1);
} }
public void testBug94779() throws Exception { public void testBug94779() throws Exception {
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append( "void f( int t ){\n" ); buffer.append("void f( int t ){\n");
buffer.append( "int s ( t );\n" ); buffer.append("int s ( t );\n");
buffer.append( "}\n" ); buffer.append("}\n");
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
IASTDeclarationStatement ds = (IASTDeclarationStatement) ((IASTCompoundStatement)((IASTFunctionDefinition)tu.getDeclarations()[0]).getBody()).getStatements()[0]; IASTDeclarationStatement ds = (IASTDeclarationStatement) ((IASTCompoundStatement) ((IASTFunctionDefinition) tu
IASTDeclarator d = ((IASTSimpleDeclaration)ds.getDeclaration()).getDeclarators()[0]; .getDeclarations()[0]).getBody()).getStatements()[0];
assertTrue( d.getName().resolveBinding() instanceof IVariable ); IASTDeclarator d = ((IASTSimpleDeclaration) ds.getDeclaration())
.getDeclarators()[0];
assertTrue(d.getName().resolveBinding() instanceof IVariable);
} }
public void testBug95714() throws Exception { public void testBug95714() throws Exception {
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append("typedef struct xs { \n"); //$NON-NLS-1$ buffer.append("typedef struct xs { \n"); //$NON-NLS-1$
buffer.append(" int state; \n"); //$NON-NLS-1$ buffer.append(" int state; \n"); //$NON-NLS-1$
buffer.append("} xs; \n"); //$NON-NLS-1$ buffer.append("} xs; \n"); //$NON-NLS-1$
buffer.append("void f( xs *ci ) { \n"); //$NON-NLS-1$ buffer.append("void f( xs *ci ) { \n"); //$NON-NLS-1$
buffer.append(" ci->state; \n"); //$NON-NLS-1$ buffer.append(" ci->state; \n"); //$NON-NLS-1$
buffer.append(" (ci - 1)->state; \n"); //$NON-NLS-1$ buffer.append(" (ci - 1)->state; \n"); //$NON-NLS-1$
buffer.append("} \n"); //$NON-NLS-1$ buffer.append("} \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPField state = (ICPPField) col.getName(1).resolveBinding(); ICPPField state = (ICPPField) col.getName(1).resolveBinding();
assertSame( state, col.getName(7).resolveBinding() ); assertSame(state, col.getName(7).resolveBinding());
assertSame( state, col.getName(9).resolveBinding() ); assertSame(state, col.getName(9).resolveBinding());
} }
public void testTypedefQualified() throws Exception { public void testTypedefQualified() throws Exception {
StringBuffer buffer = new StringBuffer(); StringBuffer buffer = new StringBuffer();
buffer.append("class _A { \n"); //$NON-NLS-1$ buffer.append("class _A { \n"); //$NON-NLS-1$
buffer.append(" static int i; \n"); //$NON-NLS-1$ buffer.append(" static int i; \n"); //$NON-NLS-1$
buffer.append("}; \n"); //$NON-NLS-1$ buffer.append("}; \n"); //$NON-NLS-1$
buffer.append("typedef _A A; \n"); //$NON-NLS-1$ buffer.append("typedef _A A; \n"); //$NON-NLS-1$
buffer.append("void f(){ \n"); //$NON-NLS-1$ buffer.append("void f(){ \n"); //$NON-NLS-1$
buffer.append(" A::i++; \n"); //$NON-NLS-1$ buffer.append(" A::i++; \n"); //$NON-NLS-1$
buffer.append("} \n"); //$NON-NLS-1$ buffer.append("} \n"); //$NON-NLS-1$
IASTTranslationUnit tu = parse( buffer.toString(), ParserLanguage.CPP ); IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector(); CPPNameCollector col = new CPPNameCollector();
tu.accept(col); tu.accept(col);
ICPPField i = (ICPPField) col.getName(1).resolveBinding(); ICPPField i = (ICPPField) col.getName(1).resolveBinding();
assertSame( i, col.getName(7).resolveBinding() ); assertSame(i, col.getName(7).resolveBinding());
} }
public void testBug86849() throws Exception {
StringBuffer buffer = new StringBuffer();
buffer.append("int f() {\n");
buffer.append(" return 5;\n");
buffer.append("}\n");
buffer.append("int main() {\n");
buffer.append("int a( 5 );\n");
buffer.append("int b( f() );\n");
buffer.append("return a+b;\n");
buffer.append("}\n");
IASTTranslationUnit tu = parse(buffer.toString(), ParserLanguage.CPP);
CPPNameCollector col = new CPPNameCollector();
tu.accept(col);
assertNoProblemBindings( col );
}
} }