refactor(facade): instantiate a fixed length array

This commit is contained in:
vsavkin 2014-10-03 16:31:12 -04:00
parent a85812f688
commit 15305b6cd7
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ export class MapWrapper {
export class ListWrapper {
static create():List { return new List(); }
static createFixedSize(size):List { return new List(); }
static createFixedSize(size):List { return new List(size); }
static get(m, k) { return m[k]; }
static set(m, k, v) { m[k] = v; }
static clone(array) {