• Home
  • Raw
  • Download

Lines Matching refs:Set

86 isEntryPage: boolean = true, pathCollection: Set<string> = new Set()): void {
136 …new Set(), new Set(), new Set(), new Map(), pathCollection, fileResolvePath, /\.d\.ets$/.test(file…
155 …asNameFromParent: Map<string, string>, pagesDir: string, log: LogInfo[], entryCollection: Set<stri…
156 …exportCollection: Set<string>, defaultCollection: Set<string>, asExportCollection: Map<string, str…
157 pathCollection: Set<string>, fileResolvePath: string, isDETS: boolean) {
291 processImport(node, pagesDir, log, asNameFromParent, true, new Set(pathCollection));
296 processImport(node, pagesDir, log, asNameFromParent, false, new Set(pathCollection));
310 processImport(node, pagesDir, log, asNameFromParent, false, new Set(pathCollection));
320 …asNameFromParent: Map<string, string>, defaultNameFromParent: string, defaultCollection: Set<strin…
321 asExportCollection: Map<string, string>, collection: Set<string>): void {
344 function isExportEntry(node: ts.StructDeclaration, log: LogInfo[], entryCollection: Set<string>,
345 exportCollection: Set<string>, defaultCollection: Set<string>, fileResolvePath: string,
430 new Set([...linkCollection.get(CUSTOM_COMPONENT_DEFAULT), ...linkCollection.get(name)]) :
433 new Set([...propertyCollection.get(CUSTOM_COMPONENT_DEFAULT),
436 new Set([...propCollection.get(CUSTOM_COMPONENT_DEFAULT), ...propCollection.get(name)]) :
439 new Set([...builderParamObjectCollection.get(CUSTOM_COMPONENT_DEFAULT),
442 new Set([...stateCollection.get(CUSTOM_COMPONENT_DEFAULT),
445 new Set([...regularCollection.get(CUSTOM_COMPONENT_DEFAULT),
448 new Set([...storagePropCollection.get(CUSTOM_COMPONENT_DEFAULT),
451 new Set([...storageLinkCollection.get(CUSTOM_COMPONENT_DEFAULT),
454 new Set([...provideCollection.get(CUSTOM_COMPONENT_DEFAULT),
457 new Set([...consumeCollection.get(CUSTOM_COMPONENT_DEFAULT),
460 new Set([...objectLinkCollection.get(CUSTOM_COMPONENT_DEFAULT),
465 new Set([...builderParamInitialization.get(CUSTOM_COMPONENT_DEFAULT),
468 new Set([...propInitialization.get(CUSTOM_COMPONENT_DEFAULT),
474 function getNewLocalStorageMap(collection: Map<string, Map<string, Set<string>>>, name: string)
475 : Map<string, Set<string>> {
476 let localStorageLinkMap: Map<string, Set<string>> = new Map();
478 const tempSet: Set<string> = new Set();
496 function setDependencies(component: string, linkArray: Set<string>, propertyArray: Set<string>,
497 propArray: Set<string>, builderParamArray: Set<string>, stateArray: Set<string>,
498 regularArray: Set<string>, storagePropsArray: Set<string>, storageLinksArray: Set<string>,
499 providesArray: Set<string>, consumesArray: Set<string>, objectLinksArray: Set<string>,
500 localStorageLinkMap: Map<string, Set<string>>, localStoragePropMap: Map<string, Set<string>>,
501 builderParamData: Set<string>, propData: Set<string>, isDETS: boolean,