fix: remove one more use of for..of

This commit is contained in:
Alex Eagle
2015-02-27 15:43:10 -08:00
parent 043b8c6d2e
commit 91426a8efe
3 changed files with 13 additions and 3 deletions

View File

@ -31,8 +31,6 @@ export class ContextWithVariableBindings {
}
clearValues() {
for (var k of MapWrapper.keys(this.varBindings)) {
MapWrapper.set(this.varBindings, k, null);
}
MapWrapper.clearValues(this.varBindings);
}
}