Home
last modified time | relevance | path

Searched refs:hasDecorator (Results 1 – 6 of 6) sorted by relevance

/developtools/ace_ets2bundle/compiler/src/
Dvalidate_ui_syntax.ts82 hasDecorator,
274 if (ts.isClassDeclaration(node) && hasDecorator(node, COMPONENT_OBSERVED_DECORATOR)) {
281 if (ts.isStructDeclaration(node) && hasDecorator(node, COMPONENT_DECORATOR_CUSTOM_DIALOG)) {
416 if (hasDecorator(node, COMPONENT_BUILDER_DECORATOR)) {
431 } else if (hasDecorator(node, COMPONENT_STYLES_DECORATOR)) {
442 if (hasDecorator(node, COMPONENT_CONCURRENT_DECORATOR)) {
498 return hasDecorator(classDeclarationNode, COMPONENT_SENDABLE_DECORATOR) ||
Dprocess_ui_syntax.ts84 hasDecorator,
250 if (hasDecorator(node, COMPONENT_EXTEND_DECORATOR, null, transformLog.errors)) {
257 } else if (hasDecorator(node, COMPONENT_BUILDER_DECORATOR) && node.name && node.body &&
286 } else if (hasDecorator(node, COMPONENT_STYLES_DECORATOR)) {
296 } else if (hasDecorator(node, COMPONENT_CONCURRENT_DECORATOR)) {
303 … } else if (hasDecorator(node, COMPONENT_ANIMATABLE_EXTEND_DECORATOR, null, transformLog.errors)) {
335 if (hasDecorator(node, COMPONENT_SENDABLE_DECORATOR)) {
Dprocess_import.ts61 hasDecorator,
215 if (ts.isFunctionDeclaration(node) && hasDecorator(node, COMPONENT_BUILDER_DECORATOR)) {
842 …} else if (ts.isFunctionDeclaration(originNode) && hasDecorator(originNode, COMPONENT_BUILDER_DECO…
Dprocess_component_class.ts130 hasDecorator,
545 } else if (hasDecorator(node, COMPONENT_BUILDER_DECORATOR, customBuilder)) {
563 } else if (hasDecorator(node, COMPONENT_STYLES_DECORATOR)) {
Dets_checker.ts84 hasDecorator,
1063 hasDecorator(node, COMPONENT_BUILDER_DECORATOR)) {
1071 if (ts.isFunctionDeclaration(node) && hasDecorator(node, COMPONENT_EXTEND_DECORATOR)) {
Dutils.ts183 export function hasDecorator(node: ts.MethodDeclaration | ts.FunctionDeclaration | function