Lines Matching refs:Set
117 export const observedPropertyDecorators: Set<string> =
118 new Set([COMPONENT_STATE_DECORATOR, COMPONENT_PROVIDE_DECORATOR]);
120 export const propAndLinkDecorators: Set<string> =
121 new Set([COMPONENT_PROP_DECORATOR, COMPONENT_LINK_DECORATOR]);
123 export const appStorageDecorators: Set<string> =
124 new Set([COMPONENT_STORAGE_PROP_DECORATOR, COMPONENT_STORAGE_LINK_DECORATOR,
127 export const mandatorySpecifyDefaultValueDecorators: Set<string> =
128 new Set([...observedPropertyDecorators, ...appStorageDecorators]);
130 export const forbiddenSpecifyDefaultValueDecorators: Set<string> =
131 new Set([COMPONENT_LINK_DECORATOR, COMPONENT_CONSUME_DECORATOR, COMPONENT_OBJECT_LINK_DECORATOR]);
133 export const mandatoryToInitViaParamDecorators: Set<string> =
134 new Set([...propAndLinkDecorators, COMPONENT_OBJECT_LINK_DECORATOR]);
136 export const setUpdateParamsDecorators: Set<string> =
137 new Set([...observedPropertyDecorators, COMPONENT_PROP_DECORATOR, COMPONENT_OBJECT_LINK_DECORATOR,
141 export const setStateVarsDecorators: Set<string> = new Set([COMPONENT_OBJECT_LINK_DECORATOR]);
143 export const immutableDecorators: Set<string> =
144 new Set([COMPONENT_OBJECT_LINK_DECORATOR, COMPONENT_BUILDERPARAM_DECORATOR]);
146 export const simpleTypes: Set<ts.SyntaxKind> = new Set([ts.SyntaxKind.StringKeyword,
149 export const decoratorParamSet: Set<string> = new Set();
151 export const stateObjectCollection: Set<string> = new Set();
435 const currentClassMethod: Set<string> = classMethodCollection.get(node.parent.name.getText());