• Home
  • Raw
  • Download

Lines Matching refs:Set

105   customDialogs: Set<string>;
106 customComponents: Set<string>;
111 properties: Set<string>;
112 regulars: Set<string>;
113 states: Set<string>;
114 links: Set<string>;
115 props: Set<string>;
116 storageProps: Set<string>;
117 storageLinks: Set<string>;
118 provides: Set<string>;
119 consumes: Set<string>;
120 objectLinks: Set<string>;
121 localStorageLink: Map<string, Set<string>>;
122 localStorageProp: Map<string, Set<string>>;
123 builderParams: Set<string>;
124 builderParamData: Set<string>;
125 propData: Set<string>;
134 customDialogs: new Set([]),
135 customComponents: new Set([]),
139 export const observedClassCollection: Set<string> = new Set();
140 export const enumCollection: Set<string> = new Set();
141 export const classMethodCollection: Map<string, Set<string>> = new Map();
142 export const dollarCollection: Set<string> = new Set();
144 export const propertyCollection: Map<string, Set<string>> = new Map();
145 export const stateCollection: Map<string, Set<string>> = new Map();
146 export const linkCollection: Map<string, Set<string>> = new Map();
147 export const propCollection: Map<string, Set<string>> = new Map();
148 export const regularCollection: Map<string, Set<string>> = new Map();
149 export const storagePropCollection: Map<string, Set<string>> = new Map();
150 export const storageLinkCollection: Map<string, Set<string>> = new Map();
151 export const provideCollection: Map<string, Set<string>> = new Map();
152 export const consumeCollection: Map<string, Set<string>> = new Map();
153 export const objectLinkCollection: Map<string, Set<string>> = new Map();
154 export const builderParamObjectCollection: Map<string, Set<string>> = new Map();
155 export const localStorageLinkCollection: Map<string, Map<string, Set<string>>> = new Map();
156 export const localStoragePropCollection: Map<string, Map<string, Set<string>>> = new Map();
157 export const builderParamInitialization: Map<string, Set<string>> = new Map();
158 export const propInitialization: Map<string, Set<string>> = new Map();
162 export const useOSFiles: Set<string> = new Set();
175 const allComponentNames: Set<string> =
176 new Set([...INNER_COMPONENT_NAMES, ...componentCollection.customComponents]);
391 function checkUISyntax(filePath: string, allComponentNames: Set<string>, content: string,
403 function visitAllNode(node: ts.Node, sourceFileNode: ts.SourceFile, allComponentNames: Set<string>,
480 allComponentNames: Set<string>,
549 function checkOneChildComponent(node: ts.EtsComponentExpression, allComponentNames: Set<string>,
563 function hasNonSingleChild(node: ts.EtsComponentExpression, allComponentNames: Set<string>,
589 function getBlockChildrenCount(blockNode: ts.Block, allComponentNames: Set<string>): number {
621 function isComponent(node: ts.EtsComponentExpression | ts.CallExpression, allComponentNames: Set<st…
637 function getIfChildrenCount(ifNode: ts.IfStatement, allComponentNames: Set<string>): number {
644 function getStatementCount(node: ts.Node, allComponentNames: Set<string>): number {
662 function checkSpecificChildComponent(node: ts.EtsComponentExpression, allComponentNames: Set<string…
676 allComponentNames: Set<string>): boolean {
682 const specificChildSet: Set<string> = SPECIFIC_CHILD_COMPONENT.get(nodeNameString);
691 function isNonspecificChildBlock(blockNode: ts.Block, specificChildSet: Set<string>,
692 allComponentNames: Set<string>): boolean {
730 function isNonspecificChildIf(node: ts.IfStatement, specificChildSet: Set<string>,
731 allComponentNames: Set<string>): boolean {
736 function isNonspecificChildForEach(node: ts.EtsComponentExpression, specificChildSet: Set<string>,
737 allComponentNames: Set<string>): boolean {
766 specificChildSet: Set<string>): boolean {
774 function isNonspecificChildIfStatement(node: ts.Node, specificChildSet: Set<string>,
775 allComponentNames: Set<string>): boolean {
819 const properties: Set<string> = new Set();
820 const states: Set<string> = new Set();
821 const links: Set<string> = new Set();
822 const props: Set<string> = new Set();
823 const regulars: Set<string> = new Set();
824 const storageProps: Set<string> = new Set();
825 const storageLinks: Set<string> = new Set();
826 const provides: Set<string> = new Set();
827 const consumes: Set<string> = new Set();
828 const objectLinks: Set<string> = new Set();
829 const builderParams: Set<string> = new Set();
830 const localStorageLink: Map<string, Set<string>> = new Map();
831 const localStorageProp: Map<string, Set<string>> = new Map();
832 const builderParamData: Set<string> = new Set();
833 const propData: Set<string> = new Set();
844 …properties: Set<string>, regulars: Set<string>, states: Set<string>, links: Set<string>, props: Se…
845 storageProps: Set<string>, storageLinks: Set<string>, provides: Set<string>,
846 consumes: Set<string>, objectLinks: Set<string>,
847 localStorageLink: Map<string, Set<string>>, localStorageProp: Map<string, Set<string>>,
848 builderParams: Set<string>, builderParamData: Set<string>, propData: Set<string>): void {
851 const currentMethodCollection: Set<string> = new Set();
883 states: Set<string>, links: Set<string>, props: Set<string>, storageProps: Set<string>,
884 storageLinks: Set<string>, provides: Set<string>, consumes: Set<string>, objectLinks: Set<string>,
885 localStorageLink: Map<string, Set<string>>, localStorageProp: Map<string, Set<string>>,
886 builderParams: Set<string>, initializationtName: ts.Expression, builderParamData: Set<string>,
887 propData: Set<string>): void {
938 localStorage: Map<string, Set<string>>): void {
939 const localStorageParam: Set<string> = new Set();
967 export function preprocessExtend(content: string, extendCollection?: Set<string>): string {
979 export function preprocessNewExtend(content: string, extendCollection?: Set<string>): string {
1199 function processInnerModule(content: string, systemValueCollection: Set<string>): string {
1258 export function getObservedPropertyCollection(className: string): Set<string> {
1259 const observedProperthCollection: Set<string> = new Set([
1273 export function getLocalStorageCollection(componentName: string, collection: Set<string>): void {