Lines Matching refs:componentName
441 const componentName: string = isCustomDialogControllerPropertyAssignment(item, log);
442 if (componentName !== null) {
444 item as ts.PropertyAssignment, componentName);
460 const componentName: string = getName(node.initializer); constant
461 if (componentCollection.customDialogs.has(componentName)) {
462 return componentName;
481 node: ts.PropertyAssignment, componentName: string): ts.PropertyAssignment {
484 processCustomDialogControllerBuilder(parent, node.initializer, componentName));
489 node: ts.CallExpression, componentName: string): ts.ArrowFunction {
490 …const newExp: ts.Expression = createCustomComponentNewExpression(node, componentName, false, false…
783 …const componentName: string = isExtendFunction(node, { decoratorName: '', componentName: '' }, tru… constant
784 if (componentName && node.body && node.body.statements.length) {
792 ts.factory.createIdentifier(componentName), statementArray, log);
797 if (node.name.getText().startsWith('__' + componentName + '__')) {
800 extendFunctionName = '__' + componentName + '__' + node.name.getText();
801 collectExtend(EXTEND_ATTRIBUTE, componentName, node.name.escapedText.toString());
810 ts.factory.createIdentifier(componentName), statementArray, log);
814 ts.factory.updateBlock(node.body, createAnimatableBody(componentName, node.name,
819 if (ts.isExpressionStatement(node) && isDollarNode(node, componentName)) {
821 ts.factory.createExpressionStatement(processExtendBody(node.expression, componentName));
823 … bindComponentAttr(changeCompName, ts.factory.createIdentifier(componentName), statementArray, []);
841 function createAnimatableBody(componentName: string, funcName: ts.Identifier,
853 createAnimatableProperty(componentName, funcName, parameters, paramNode, attrArray),
859 ts.factory.createIdentifier(componentName),
869 function createAnimatableProperty(componentName: string, funcName: ts.Identifier,
872 const componentIdentifier: ts.Identifier = ts.factory.createIdentifier(componentName);
884 createAnimatableFrameNode(componentName),
894 function createAnimatableFrameNode(componentName: string): ts.ExpressionStatement {
901 ts.factory.createStringLiteral(componentName),
991 function isDollarNode(node: ts.ExpressionStatement, componentName: string): boolean {
998 changedIdentifier = `${componentName}Instance`;
1007 function processExtendBody(node: ts.Node, componentName?: string): ts.Expression {
1010 return ts.factory.createCallExpression(processExtendBody(node.expression, componentName),
1014 processExtendBody(node.expression, componentName), node.name);
1016 if (!componentName) {
1019 return ts.factory.createIdentifier(componentName);
1039 … if (CHECK_EXTEND_DECORATORS.includes(extendResult.decoratorName) && extendResult.componentName) {
1040 return extendResult.componentName;
1061 extendResult.componentName = node.arguments[0].escapedText.toString();
1389 componentCollection.previewComponent.forEach((componentName: string) => {
1391 context.factory.createIdentifier(componentName),
1393 componentName === name ? newArray : newArray.slice(0, newArray.length - 1)
1395 argsArr.push(context.factory.createStringLiteral(componentName), newExpression);