Lines Matching full:set
25 export let reservedProperties: Set<string> = new Set();
29 // it is necessary to prevent duplication with the names in this set.
30 export let globalMangledNamesInCache: Set<string> = new Set();
45 export let reservedSdkApiForProp: Set<string> = new Set();
46 export let reservedSdkApiForGlobal: Set<string> = new Set();
47 export let reservedSdkApiForLocal: Set<string> = new Set();
48 export let reservedStruct: Set<string> = new Set();
49 export let reservedLangForProperty: Set<string> = new Set();
52 …export let reservedLangForTopLevel: Set<string> = new Set(['__global', 'default']); // Will not ad…
53 export let reservedExportName: Set<string> = new Set();
54 export let reservedExportNameAndProp: Set<string> = new Set();
55 export let reservedStrProp: Set<string> = new Set();
56 export let reservedEnum: Set<string> = new Set();
59 export let unobfuscatedPropMap: Map<string, Set<string>> = new Map();
60 export let unobfuscatedNamesMap: Map<string, Set<string>> = new Map();
82 …export let reservedConfig: Set<string> = new Set(); // Obtain the name from the user-configured .d…
83 …export let reservedLangForLocal: Set<string> = new Set(['this', '__global']); // Will not add new …
92 propertyNames: new Set<string>(),
93 globalNames: new Set<string>()
97 propertyNames: new Set<string>(),
98 globalNames: new Set<string>()
110 export let propertyNames: Set<string> = new Set();
111 export let globalNames: Set<string> = new Set();
120 export let decoratorProp: Set<string> = new Set();