Allow using Map and Set internally

Enables the ie11 safe api for Map and Set
This commit is contained in:
Matt Bierner 2019-08-15 16:26:39 -07:00
Родитель afd20a74ab
Коммит b93aabfb66
2 изменённых файлов: 79 добавлений и 4 удалений

Просмотреть файл

@ -170,7 +170,7 @@ class ScopeMetadataProvider {
private readonly _initialLanguage: number;
private readonly _themeProvider: IThemeProvider;
private _cache: { [scopeName: string]: ScopeMetadata; };
private _cache: Map<string, ScopeMetadata>;
private _defaultMetaData: ScopeMetadata;
private readonly _embeddedLanguages: IEmbeddedLanguagesMap;
private readonly _embeddedLanguagesRegex: RegExp;
@ -211,7 +211,7 @@ class ScopeMetadataProvider {
}
public onDidChangeTheme(): void {
this._cache = Object.create(null);
this._cache = new Map();
this._defaultMetaData = new ScopeMetadata(
'',
this._initialLanguage,
@ -236,12 +236,12 @@ class ScopeMetadataProvider {
if (scopeName === null) {
return ScopeMetadataProvider._NULL_SCOPE_METADATA;
}
let value = this._cache[scopeName];
let value = this._cache.get(scopeName);
if (value) {
return value;
}
value = this._doGetMetadataForScope(scopeName);
this._cache[scopeName] = value;
this._cache.set(scopeName, value);
return value;
}

75
typings/lib.ie11_safe_es6.d.ts поставляемый Normal file
Просмотреть файл

@ -0,0 +1,75 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// Defined a subset of ES6 built ins that run in IE11
// CHECK WITH http://kangax.github.io/compat-table/es6/#ie11
interface Map<K, V> {
clear(): void;
delete(key: K): boolean;
forEach(callbackfn: (value: V, index: K, map: Map<K, V>) => void, thisArg?: any): void;
get(key: K): V | undefined;
has(key: K): boolean;
set(key: K, value?: V): Map<K, V>;
readonly size: number;
// not supported on IE11:
// entries(): IterableIterator<[K, V]>;
// keys(): IterableIterator<K>;
// values(): IterableIterator<V>;
// [Symbol.iterator]():IterableIterator<[K,V]>;
// [Symbol.toStringTag]: string;
}
interface MapConstructor {
new <K, V>(): Map<K, V>;
// not supported on IE11:
// new <K, V>(iterable: Iterable<[K, V]>): Map<K, V>;
}
declare var Map: MapConstructor;
interface Set<T> {
add(value: T): Set<T>;
clear(): void;
delete(value: T): boolean;
forEach(callbackfn: (value: T, index: T, set: Set<T>) => void, thisArg?: any): void;
has(value: T): boolean;
readonly size: number;
// not supported on IE11:
// entries(): IterableIterator<[T, T]>;
// keys(): IterableIterator<T>;
// values(): IterableIterator<T>;
// [Symbol.iterator]():IterableIterator<T>;
// [Symbol.toStringTag]: string;
}
interface SetConstructor {
new <T>(): Set<T>;
// not supported on IE11:
// new <T>(iterable: Iterable<T>): Set<T>;
}
declare var Set: SetConstructor;
interface WeakMap<K extends object, V> {
delete(key: K): boolean;
get(key: K): V | undefined;
has(key: K): boolean;
// IE11 doesn't return this
// set(key: K, value?: V): this;
set(key: K, value?: V): undefined;
}
interface WeakMapConstructor {
new(): WeakMap<any, any>;
new <K extends object, V>(): WeakMap<K, V>;
// new <K, V>(entries?: [K, V][]): WeakMap<K, V>;
readonly prototype: WeakMap<object, any>;
}
declare var WeakMap: WeakMapConstructor;