Searched refs:argumentsArray (Results 1 – 3 of 3) sorted by relevance
| /developtools/ace_ets2bundle/compiler/src/ |
| D | process_component_member.ts | 847 let argumentsArray: ts.Expression[]; 849 argumentsArray = Array.from(node.arguments); 851 manageLocalStorageComponents(oldNode, argumentsArray); 855 if (!argumentsArray) { 856 argumentsArray = [ts.factory.createObjectLiteralExpression([], true)]; 858 argumentsArray.push(ts.factory.createIdentifier(COMPONENT_IF_UNDEFINED)); 863 argumentsArray.unshift(isBuilder ? ts.factory.createBinaryExpression( 869 …argumentsArray.unshift((isGlobalBuilder || storedFileInfo.processLocalBuilder) ? parentConditional… 870 argumentsArray.push(isCutomDialog ? ts.factory.createPrefixUnaryExpression( 876 ts.factory.updateNewExpression(node, node.expression, node.typeArguments, argumentsArray); [all …]
|
| D | process_component_build.ts | 743 let argumentsArray: ts.ObjectLiteralExpression[] = node.expression.arguments; 744 if (argumentsArray && !argumentsArray.length) { 745 argumentsArray = [ts.factory.createObjectLiteralExpression([newPropertyAssignment], true)]; 746 } else if (ts.isObjectLiteralExpression(argumentsArray[0]) && argumentsArray.length === 1) { 747 argumentsArray = [ts.factory.createObjectLiteralExpression( 750 } else if (ts.isObjectLiteralExpression(argumentsArray[0]) && argumentsArray.length === 2) { 751 argumentsArray = [ts.factory.createObjectLiteralExpression( 753 …node.expression.arguments[0].properties.concat([newPropertyAssignment]), true), argumentsArray[1]]; 758 argumentsArray); 1512 const argumentsArray: ts.Expression[] = Array.from(node.expression.arguments); constant [all …]
|
| D | process_custom_component.ts | 142 let argumentsArray: ts.PropertyAssignment[]; 146 argumentsArray = componentNode.arguments[0].properties.slice(); 147 argumentsArray.forEach((item: ts.PropertyAssignment, index: number) => { 152 argumentsArray.splice(index, 1, propertyAssignmentNode); 158 [ts.factory.createObjectLiteralExpression(argumentsArray, true)]));
|