Fixed the missing variable declarations on iterators. This makes running the tests in ES6 pass!

Signed-off-by: Alexander Mays <maysale01@gmail.com>
This commit is contained in:
Alexander Mays
2016-02-02 10:03:54 -05:00
parent 477a091f88
commit 52769cce29
3 changed files with 4 additions and 4 deletions

View File

@@ -232,7 +232,7 @@ ExportAdapter.prototype.handleRelationUpdates = function(className,
}
if (op.__op == 'Batch') {
for (x of op.ops) {
for (var x of op.ops) {
process(x, key);
}
}