Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:switchStmt

1059   EXPECT_TRUE(matches("void x() { switch(42) { case 42:; } }", switchStmt()));
1060 EXPECT_TRUE(matches("void x() { switch(42) { default:; } }", switchStmt()));
1061 EXPECT_TRUE(matches("void x() { switch(42) default:; }", switchStmt()));
1062 EXPECT_TRUE(notMatches("void x() {}", switchStmt()));