refactor(Parser): cleanup

This commit is contained in:
vsavkin
2014-11-06 09:09:34 -08:00
parent 693489ce38
commit 7908533336
4 changed files with 18 additions and 14 deletions

View File

@ -6,7 +6,7 @@ export var Set = window.Set;
export class MapWrapper {
static create():Map { return new Map(); }
static createFromPairs(pairs:List):Map { return new Map(pairs); }
static createFromPairs(pairs:List):Map {return new Map(pairs);}
static get(m, k) { return m.get(k); }
static set(m, k, v) { m.set(k,v); }
static contains(m, k) { return m.has(k); }