Home
last modified time | relevance | path

Searched refs:argumentsArray (Results 1 – 3 of 3) sorted by relevance

/developtools/ace_ets2bundle/compiler/src/
Dprocess_component_member.ts847 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(
869argumentsArray.unshift((isGlobalBuilder || storedFileInfo.processLocalBuilder) ? parentConditional…
870 argumentsArray.push(isCutomDialog ? ts.factory.createPrefixUnaryExpression(
876 ts.factory.updateNewExpression(node, node.expression, node.typeArguments, argumentsArray);
[all …]
Dprocess_component_build.ts743 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 …]
Dprocess_custom_component.ts142 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)]));