Lines Matching refs:Set
121 export const observedPropertyDecorators: Set<string> =
122 new Set([COMPONENT_STATE_DECORATOR, COMPONENT_PROVIDE_DECORATOR]);
124 export const propAndLinkDecorators: Set<string> =
125 new Set([COMPONENT_PROP_DECORATOR, COMPONENT_LINK_DECORATOR]);
127 export const appStorageDecorators: Set<string> =
128 new Set([COMPONENT_STORAGE_PROP_DECORATOR, COMPONENT_STORAGE_LINK_DECORATOR,
131 export const mandatorySpecifyDefaultValueDecorators: Set<string> =
132 new Set([...observedPropertyDecorators, ...appStorageDecorators]);
134 export const forbiddenSpecifyDefaultValueDecorators: Set<string> =
135 new Set([COMPONENT_LINK_DECORATOR, COMPONENT_CONSUME_DECORATOR, COMPONENT_OBJECT_LINK_DECORATOR]);
137 export const mandatoryToInitViaParamDecorators: Set<string> =
138 new Set([...propAndLinkDecorators, COMPONENT_OBJECT_LINK_DECORATOR]);
140 export const setUpdateParamsDecorators: Set<string> =
141 new Set([...observedPropertyDecorators, COMPONENT_PROP_DECORATOR, COMPONENT_OBJECT_LINK_DECORATOR,
145 export const setStateVarsDecorators: Set<string> = new Set([COMPONENT_OBJECT_LINK_DECORATOR]);
147 export const immutableDecorators: Set<string> =
148 new Set([COMPONENT_OBJECT_LINK_DECORATOR, COMPONENT_BUILDERPARAM_DECORATOR]);
150 export const simpleTypes: Set<ts.SyntaxKind> = new Set([ts.SyntaxKind.StringKeyword,
153 export const decoratorParamSet: Set<string> = new Set();
155 export const stateObjectCollection: Set<string> = new Set();
470 const currentClassMethod: Set<string> = classMethodCollection.get(node.parent.name.getText());