Home
last modified time | relevance | path

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

/developtools/ace-ets2bundle/compiler/src/
Dprocess_ui_syntax.ts52 hasDecorator,
124 if (hasDecorator(node, COMPONENT_EXTEND_DECORATOR)) {
126 } else if (hasDecorator(node, COMPONENT_BUILDER_DECORATOR) && node.name && node.body &&
132 } else if (hasDecorator(node, COMPONENT_STYLES_DECORATOR)) {
Dvalidate_ui_syntax.ts63 hasDecorator
243 if (ts.isClassDeclaration(node) && hasDecorator(node, COMPONENT_OBSERVED_DECORATOR)) {
250 if (ts.isClassDeclaration(node) && hasDecorator(node, COMPONENT_DECORATOR_CUSTOM_DIALOG)) {
338 if (ts.isMethodDeclaration(node) && hasDecorator(node, COMPONENT_BUILDER_DECORATOR)) {
Dprocess_component_class.ts92 hasDecorator
293 } else if (hasDecorator(node, COMPONENT_BUILDER_DECORATOR)) {
298 } else if (hasDecorator(node, COMPONENT_STYLES_DECORATOR)) {
Dutils.ts128 export function hasDecorator(node: ts.MethodDeclaration | ts.FunctionDeclaration | function