This commit is contained in:
Hackerpilot 2015-09-25 17:54:45 -07:00
parent 2cf8ebe956
commit f99d4ae954
1 changed files with 5 additions and 0 deletions

View File

@ -93,7 +93,12 @@ class UnmodifiedFinder:BaseAnalyzer
assignExpression.ternaryExpression.accept(this);
guaranteeUse--;
interest--;
if (assignExpression.operator == tok!"~=")
interest++;
assignExpression.expression.accept(this);
if (assignExpression.operator == tok!"~=")
interest--;
}
else
assignExpression.accept(this);