We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e12016 commit a51ab1eCopy full SHA for a51ab1e
1 file changed
lib/forwardanalyzer.cpp
@@ -208,7 +208,9 @@ namespace {
208
bool checkThen, checkElse;
209
std::tie(checkThen, checkElse) = evalCond(condTok);
210
if (!checkThen && !checkElse) {
211
- if (!traverseUnknown && stopOnCondition(condTok)) {
+ if (!traverseUnknown && stopOnCondition(condTok) && stopUpdates()) {
212
+ if (tok->str() == "?")
213
+ analyzeOnly = false;
214
return Progress::Continue;
215
}
216
checkThen = true;
0 commit comments