Bug 1145394 - Fix unparseable JS code (r=gavin)

--HG--
extra : rebase_source : 02710e8e3368e445f9841945cd905d7726d395d8
This commit is contained in:
Bill McCloskey 2015-03-24 14:22:08 -07:00
parent eefcc0b4fd
commit 7b55cc0a76

View File

@ -202,7 +202,7 @@ var Connection = Class({
},
poolFor: function(id) {
for (let pool of this.pools.values()) {
if pool.has(id)
if (pool.has(id))
return pool;
}
},
@ -797,7 +797,7 @@ var Tab = Client.from({
"storageActor": "storage",
"gcliActor": "gcli",
"memoryActor": "memory",
"eventLoopLag": "eventLoopLag"
"eventLoopLag": "eventLoopLag",
"trace": "trace", // missing
}