Skip to content

Commit

Permalink
restory accidentially removed code
Browse files Browse the repository at this point in the history
  • Loading branch information
peq committed Aug 15, 2021
1 parent 9114c1e commit 1d972ae
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -402,9 +402,13 @@ private boolean isMergable(ImVar left, ImExpr e) {
*/
private void invalidateVar(ImVar left) {
currentValues.remove(left);
if (left.isGlobal()) {
invalidateGlobals();
} else {
currentValues.removeAll(readBy.lookup(left));
}
}


@Override
public String toString() {
ArrayList<ImVar> keys = Lists.newArrayList(currentValues.keySet());
Expand Down

0 comments on commit 1d972ae

Please sign in to comment.