fix(analyzer): fix a warning about an unused variable

This commit is contained in:
Victor Berchet
2014-12-11 00:30:21 +01:00
parent 3ec3d5e084
commit 59d6d604b4
3 changed files with 5 additions and 1 deletions

View File

@ -31,7 +31,7 @@ export class ContextWithVariableBindings {
}
clearValues() {
for (var [k, v] of MapWrapper.iterable(this.varBindings)) {
for (var k of MapWrapper.keys(this.varBindings)) {
MapWrapper.set(this.varBindings, k, null);
}
}