Make sure temp locals don't collide when allocating literal arrays, fixes #281

Originally part of #288
This commit is contained in:
dcodeIO
2018-10-03 01:32:28 +02:00
parent db0e82fbc3
commit eeb8a8fd6c
10 changed files with 513 additions and 60 deletions

View File

@ -354,6 +354,7 @@ declare class Map<K,V> {
entries(): Iterable<[K, V]>;
keys(): Iterable<K>;
values(): Iterable<V>;
delete(key: K): bool;
[Symbol.iterator](): Iterator<[K,V]>;
}