Home
last modified time | relevance | path

Searched refs:initExpression (Results 1 – 2 of 2) sorted by relevance

/developtools/ace_ets2bundle/compiler/src/
Dprocess_component_class.ts593 const initExpression: ts.Expression = node.initializer; constant
595 if (ts.isIdentifier(initExpression) &&
596 initExpression.escapedText.toString().match(LINK_REG)) {
597 initText = initExpression.escapedText.toString().replace(LINK_REG, '');
598 } else if (ts.isPropertyAccessExpression(initExpression) && initExpression.expression &&
599 initExpression.expression.kind === ts.SyntaxKind.ThisKeyword &&
600 …ts.isIdentifier(initExpression.name) && initExpression.name.escapedText.toString().match(LINK_REG)…
601 initText = initExpression.name.escapedText.toString().replace(LINK_REG, '');
602 …} else if (isBuilder && ts.isPropertyAccessExpression(initExpression) && initExpression.expression…
603 …ts.isIdentifier(initExpression.expression) && initExpression.expression.escapedText.toString() ===…
[all …]
Dprocess_custom_component.ts718 const initExpression: ts.Expression = node.initializer; constant
719 if (!initExpression) {
722 let parentPropertyName: string = initExpression.getText();
725 const initName: ts.Identifier = initExpression.name || initExpression;
726 if (hasDollar(initExpression)) {
732 if (hasDollar(initExpression)) {
830 function hasDollar(initExpression: ts.Expression): boolean {
831 if (ts.isPropertyAccessExpression(initExpression) &&
832 matchStartWithDollar(initExpression.name.getText())) {
834 } else if (ts.isIdentifier(initExpression) && matchStartWithDollar(initExpression.getText())) {