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.ts84 hasDecorator,
277 if (ts.isClassDeclaration(node) && hasDecorator(node, COMPONENT_OBSERVED_DECORATOR)) {
284 if (ts.isStructDeclaration(node) && hasDecorator(node, COMPONENT_DECORATOR_CUSTOM_DIALOG)) {
411 if (hasDecorator(node, COMPONENT_BUILDER_DECORATOR)) {
426 } else if (hasDecorator(node, COMPONENT_STYLES_DECORATOR)) {
437 if (hasDecorator(node, COMPONENT_CONCURRENT_DECORATOR)) {
Dprocess_ui_syntax.ts84 hasDecorator,
244 if (hasDecorator(node, COMPONENT_EXTEND_DECORATOR, null, transformLog.errors)) {
246 } else if (hasDecorator(node, COMPONENT_BUILDER_DECORATOR) && node.name && node.body &&
259 } else if (hasDecorator(node, COMPONENT_STYLES_DECORATOR)) {
269 } else if (hasDecorator(node, COMPONENT_CONCURRENT_DECORATOR)) {
272 … } else if (hasDecorator(node, COMPONENT_ANIMATABLE_EXTEND_DECORATOR, null, transformLog.errors)) {
Dprocess_component_class.ts128 hasDecorator,
430 } else if (hasDecorator(node, COMPONENT_BUILDER_DECORATOR, customBuilder)) {
441 } else if (hasDecorator(node, COMPONENT_STYLES_DECORATOR)) {
Dprocess_import.ts62 hasDecorator,
211 if (ts.isFunctionDeclaration(node) && hasDecorator(node, COMPONENT_BUILDER_DECORATOR)) {
831 …} else if (ts.isFunctionDeclaration(originNode) && hasDecorator(originNode, COMPONENT_BUILDER_DECO…
Dets_checker.ts61 hasDecorator,
776 hasDecorator(node, COMPONENT_BUILDER_DECORATOR)) {
784 if (ts.isFunctionDeclaration(node) && hasDecorator(node, COMPONENT_EXTEND_DECORATOR)) {
Dutils.ts179 export function hasDecorator(node: ts.MethodDeclaration | ts.FunctionDeclaration | function