Lines Matching refs:Set
85 isEntryPage: boolean = true, pathCollection: Set<string> = new Set()): void {
136 …new Set(), new Set(), new Set(), new Map(), pathCollection, fileResolvePath, /\.d\.ets$/.test(file…
157 …asNameFromParent: Map<string, string>, pagesDir: string, log: LogInfo[], entryCollection: Set<stri…
158 …exportCollection: Set<string>, defaultCollection: Set<string>, asExportCollection: Map<string, str…
159 pathCollection: Set<string>, fileResolvePath: string, isDETS: boolean) {
295 processImport(node, pagesDir, log, asNameFromParent, true, new Set(pathCollection));
300 processImport(node, pagesDir, log, asNameFromParent, false, new Set(pathCollection));
314 processImport(node, pagesDir, log, asNameFromParent, false, new Set(pathCollection));
324 …asNameFromParent: Map<string, string>, defaultNameFromParent: string, defaultCollection: Set<strin…
325 asExportCollection: Map<string, string>, collection: Set<string>): void {
348 function isExportEntry(node: ts.StructDeclaration, log: LogInfo[], entryCollection: Set<string>,
349 exportCollection: Set<string>, defaultCollection: Set<string>, fileResolvePath: string,
417 new Set([...linkCollection.get(CUSTOM_COMPONENT_DEFAULT), ...linkCollection.get(name)]) :
420 new Set([...propertyCollection.get(CUSTOM_COMPONENT_DEFAULT),
423 new Set([...propCollection.get(CUSTOM_COMPONENT_DEFAULT), ...propCollection.get(name)]) :
426 new Set([...builderParamObjectCollection.get(CUSTOM_COMPONENT_DEFAULT),
429 new Set([...stateCollection.get(CUSTOM_COMPONENT_DEFAULT),
432 new Set([...regularCollection.get(CUSTOM_COMPONENT_DEFAULT),
435 new Set([...storagePropCollection.get(CUSTOM_COMPONENT_DEFAULT),
438 new Set([...storageLinkCollection.get(CUSTOM_COMPONENT_DEFAULT),
441 new Set([...provideCollection.get(CUSTOM_COMPONENT_DEFAULT),
444 new Set([...consumeCollection.get(CUSTOM_COMPONENT_DEFAULT),
447 new Set([...objectLinkCollection.get(CUSTOM_COMPONENT_DEFAULT),
452 new Set([...builderParamInitialization.get(CUSTOM_COMPONENT_DEFAULT),
455 new Set([...propInitialization.get(CUSTOM_COMPONENT_DEFAULT),
461 function getNewLocalStorageMap(collection: Map<string, Map<string, Set<string>>>, name: string)
462 : Map<string, Set<string>> {
463 let localStorageLinkMap: Map<string, Set<string>> = new Map();
465 const tempSet: Set<string> = new Set();
483 function setDependencies(component: string, linkArray: Set<string>, propertyArray: Set<string>,
484 propArray: Set<string>, builderParamArray: Set<string>, stateArray: Set<string>,
485 regularArray: Set<string>, storagePropsArray: Set<string>, storageLinksArray: Set<string>,
486 providesArray: Set<string>, consumesArray: Set<string>, objectLinksArray: Set<string>,
487 localStorageLinkMap: Map<string, Set<string>>, localStoragePropMap: Map<string, Set<string>>,
488 builderParamData: Set<string>, propData: Set<string>, isDETS: boolean,