Home | History | Annotate | Download | only in ASTMatchers

Lines Matching defs:Conditional

785   StatementMatcher Conditional = conditionalOperator(
789 EXPECT_TRUE(matches("void x() { true ? false : true; }", Conditional));
790 EXPECT_TRUE(notMatches("void x() { false ? false : true; }", Conditional));
791 EXPECT_TRUE(notMatches("void x() { true ? true : false; }", Conditional));