diff options
author | Manuel Klimek <klimek@google.com> | 2013-07-19 11:50:54 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2013-07-19 11:50:54 +0000 |
commit | ba46fc01a866fb8b6f14d3104227a7bbe5b98d01 (patch) | |
tree | 77e4fa0bc639a6f3089c510768ed6bd920533293 /clang/unittests/ASTMatchers/ASTMatchersTest.cpp | |
parent | 6c321c131b7f6698eaa9499b5a37f5ecf36cee44 (diff) | |
download | bcm5719-llvm-ba46fc01a866fb8b6f14d3104227a7bbe5b98d01.tar.gz bcm5719-llvm-ba46fc01a866fb8b6f14d3104227a7bbe5b98d01.zip |
Adds ctorInitializer and forEachConstructorInitializer matchers.
llvm-svn: 186668
Diffstat (limited to 'clang/unittests/ASTMatchers/ASTMatchersTest.cpp')
-rw-r--r-- | clang/unittests/ASTMatchers/ASTMatchersTest.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/clang/unittests/ASTMatchers/ASTMatchersTest.cpp b/clang/unittests/ASTMatchers/ASTMatchersTest.cpp index 8df0274504e..b6d21e69975 100644 --- a/clang/unittests/ASTMatchers/ASTMatchersTest.cpp +++ b/clang/unittests/ASTMatchers/ASTMatchersTest.cpp @@ -2967,6 +2967,12 @@ TEST(SwitchCase, MatchesEachCase) { new VerifyIdIsBoundTo<CaseStmt>("x", 3))); } +TEST(ForEachConstructorInitializer, MatchesInitializers) { + EXPECT_TRUE(matches( + "struct X { X() : i(42), j(42) {} int i, j; };", + constructorDecl(forEachConstructorInitializer(ctorInitializer())))); +} + TEST(ExceptionHandling, SimpleCases) { EXPECT_TRUE(matches("void foo() try { } catch(int X) { }", catchStmt())); EXPECT_TRUE(matches("void foo() try { } catch(int X) { }", tryStmt())); @@ -3157,6 +3163,11 @@ TEST(LoopingMatchers, DoNotOverwritePreviousMatchResultOnFailure) { "class A {};", recordDecl(hasName("::A"), decl().bind("x"), unless(hasName("fooble"))), new VerifyIdIsBoundTo<Decl>("x", 1))); + EXPECT_TRUE(matchAndVerifyResultTrue( + "class A { A() : s(), i(42) {} const char *s; int i; };", + constructorDecl(hasName("::A::A"), decl().bind("x"), + forEachConstructorInitializer(forField(hasName("i")))), + new VerifyIdIsBoundTo<Decl>("x", 1))); } TEST(ForEachDescendant, BindsCorrectNodes) { |