Home | History | Annotate | Download | only in ASTMatchers

Lines Matching defs:Conditional

2183   StatementMatcher Conditional = conditionalOperator(
2187 EXPECT_TRUE(matches("void x() { true ? false : true; }", Conditional));
2188 EXPECT_TRUE(notMatches("void x() { false ? false : true; }", Conditional));
2189 EXPECT_TRUE(notMatches("void x() { true ? true : false; }", Conditional));