| 122 | } |
| 123 | |
| 124 | void ScopeTest::testIfElse() |
| 125 | { |
| 126 | QMake::Driver d; |
| 127 | d.setContent(QStringLiteral("isEmpty(foo) { A = 1 } else { B = 2 }\n")); |
| 128 | bool ret = d.parse(&ast); |
| 129 | QVERIFY(ret); |
| 130 | } |
| 131 | |
| 132 | #include "moc_scopetest.cpp" |
nothing calls this directly
no test coverage detected