• Home
  • Raw
  • Download

Lines Matching refs:Set

101   customDialogs: Set<string>;
102 customComponents: Set<string>;
107 properties: Set<string>;
108 regulars: Set<string>;
109 states: Set<string>;
110 links: Set<string>;
111 props: Set<string>;
112 storageProps: Set<string>;
113 storageLinks: Set<string>;
114 provides: Set<string>;
115 consumes: Set<string>;
116 objectLinks: Set<string>;
117 localStorageLink: Map<string, Set<string>>;
118 localStorageProp: Map<string, Set<string>>;
119 builderParams: Set<string>;
120 builderParamData: Set<string>;
121 propData: Set<string>;
130 customDialogs: new Set([]),
131 customComponents: new Set([]),
135 export const observedClassCollection: Set<string> = new Set();
136 export const enumCollection: Set<string> = new Set();
137 export const classMethodCollection: Map<string, Set<string>> = new Map();
138 export const dollarCollection: Set<string> = new Set();
140 export const propertyCollection: Map<string, Set<string>> = new Map();
141 export const stateCollection: Map<string, Set<string>> = new Map();
142 export const linkCollection: Map<string, Set<string>> = new Map();
143 export const propCollection: Map<string, Set<string>> = new Map();
144 export const regularCollection: Map<string, Set<string>> = new Map();
145 export const storagePropCollection: Map<string, Set<string>> = new Map();
146 export const storageLinkCollection: Map<string, Set<string>> = new Map();
147 export const provideCollection: Map<string, Set<string>> = new Map();
148 export const consumeCollection: Map<string, Set<string>> = new Map();
149 export const objectLinkCollection: Map<string, Set<string>> = new Map();
150 export const builderParamObjectCollection: Map<string, Set<string>> = new Map();
151 export const localStorageLinkCollection: Map<string, Map<string, Set<string>>> = new Map();
152 export const localStoragePropCollection: Map<string, Map<string, Set<string>>> = new Map();
153 export const builderParamInitialization: Map<string, Set<string>> = new Map();
154 export const propInitialization: Map<string, Set<string>> = new Map();
158 export const useOSFiles: Set<string> = new Set();
171 const allComponentNames: Set<string> =
172 new Set([...INNER_COMPONENT_NAMES, ...componentCollection.customComponents]);
390 function checkUISyntax(filePath: string, allComponentNames: Set<string>, content: string,
402 function visitAllNode(node: ts.Node, sourceFileNode: ts.SourceFile, allComponentNames: Set<string>,
599 allComponentNames: Set<string>,
668 function checkOneChildComponent(node: ts.EtsComponentExpression, allComponentNames: Set<string>,
682 function hasNonSingleChild(node: ts.EtsComponentExpression, allComponentNames: Set<string>,
708 function getBlockChildrenCount(blockNode: ts.Block, allComponentNames: Set<string>): number {
740 function isComponent(node: ts.EtsComponentExpression | ts.CallExpression, allComponentNames: Set<st…
756 function getIfChildrenCount(ifNode: ts.IfStatement, allComponentNames: Set<string>): number {
763 function getStatementCount(node: ts.Node, allComponentNames: Set<string>): number {
781 function checkSpecificChildComponent(node: ts.EtsComponentExpression, allComponentNames: Set<string…
795 allComponentNames: Set<string>): boolean {
801 const specificChildSet: Set<string> = SPECIFIC_CHILD_COMPONENT.get(nodeNameString);
810 function isNonspecificChildBlock(blockNode: ts.Block, specificChildSet: Set<string>,
811 allComponentNames: Set<string>): boolean {
849 function isNonspecificChildIf(node: ts.IfStatement, specificChildSet: Set<string>,
850 allComponentNames: Set<string>): boolean {
855 function isNonspecificChildForEach(node: ts.EtsComponentExpression, specificChildSet: Set<string>,
856 allComponentNames: Set<string>): boolean {
885 specificChildSet: Set<string>): boolean {
893 function isNonspecificChildIfStatement(node: ts.Node, specificChildSet: Set<string>,
894 allComponentNames: Set<string>): boolean {
938 const properties: Set<string> = new Set();
939 const states: Set<string> = new Set();
940 const links: Set<string> = new Set();
941 const props: Set<string> = new Set();
942 const regulars: Set<string> = new Set();
943 const storageProps: Set<string> = new Set();
944 const storageLinks: Set<string> = new Set();
945 const provides: Set<string> = new Set();
946 const consumes: Set<string> = new Set();
947 const objectLinks: Set<string> = new Set();
948 const builderParams: Set<string> = new Set();
949 const localStorageLink: Map<string, Set<string>> = new Map();
950 const localStorageProp: Map<string, Set<string>> = new Map();
951 const builderParamData: Set<string> = new Set();
952 const propData: Set<string> = new Set();
969 …properties: Set<string>, regulars: Set<string>, states: Set<string>, links: Set<string>, props: Se…
970 storageProps: Set<string>, storageLinks: Set<string>, provides: Set<string>,
971 consumes: Set<string>, objectLinks: Set<string>,
972 localStorageLink: Map<string, Set<string>>, localStorageProp: Map<string, Set<string>>,
973 builderParams: Set<string>, builderParamData: Set<string>, propData: Set<string>): void {
976 const currentMethodCollection: Set<string> = new Set();
1009 function checkRequire(name: string, builderParamData: Set<string>,
1010 propData: Set<string>, recordRequire: RecordRequire): void {
1022 states: Set<string>, links: Set<string>, props: Set<string>, storageProps: Set<string>,
1023 storageLinks: Set<string>, provides: Set<string>, consumes: Set<string>, objectLinks: Set<string>,
1024 localStorageLink: Map<string, Set<string>>, localStorageProp: Map<string, Set<string>>,
1025 builderParams: Set<string>, recordRequire: RecordRequire): void {
1076 localStorage: Map<string, Set<string>>): void {
1077 const localStorageParam: Set<string> = new Set();
1105 export function preprocessExtend(content: string, extendCollection?: Set<string>): string {
1117 export function preprocessNewExtend(content: string, extendCollection?: Set<string>): string {
1244 function processInnerModule(content: string, systemValueCollection: Set<string>): string {
1300 export function getObservedPropertyCollection(className: string): Set<string> {
1301 const observedProperthCollection: Set<string> = new Set([
1315 export function getLocalStorageCollection(componentName: string, collection: Set<string>): void {