Home
last modified time | relevance | path

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

/developtools/ace_ets2bundle/compiler/src/
Dprocess_component_build.ts568 let argumentsArray: ts.ObjectLiteralExpression[] = node.expression.arguments;
569 if (argumentsArray && !argumentsArray.length) {
570 argumentsArray = [ts.factory.createObjectLiteralExpression([newPropertyAssignment], true)];
572 argumentsArray = [ts.factory.createObjectLiteralExpression(
579 argumentsArray);
1117 const argumentsArray: ts.Expression[] = Array.from(node.expression.arguments); constant
1119 if (argumentsArray.length) {
1122 ts.factory.createIdentifier(FOREACH_GET_RAW_OBJECT)), undefined, [argumentsArray[0]]);
1124 argumentsArray.splice(0, 1, arrayObserveredObject);
1128 argumentsArray.splice(1, 1, newArrowNode);
[all …]
Dprocess_component_member.ts776 let argumentsArray: ts.Expression[];
778 argumentsArray = Array.from(node.arguments);
781 if (!argumentsArray) {
782 argumentsArray = [ts.factory.createObjectLiteralExpression([], true)];
786 argumentsArray.unshift(isBuilder ? ts.factory.createBinaryExpression(
792argumentsArray.unshift(isGlobalBuilder ? parentConditionalExpression() : ts.factory.createThis());
793 argumentsArray.push(ts.factory.createIdentifier(COMPONENT_IF_UNDEFINED),
800 ts.factory.updateNewExpression(node, node.expression, node.typeArguments, argumentsArray);
801 } else if (argumentsArray) {
803 ts.factory.updateNewExpression(node, node.expression, node.typeArguments, argumentsArray);
Dprocess_custom_component.ts133 let argumentsArray: ts.PropertyAssignment[];
137 argumentsArray = componentNode.arguments[0].properties.slice();
138 argumentsArray.forEach((item: ts.PropertyAssignment, index: number) => {
143 argumentsArray.splice(index, 1, propertyAssignmentNode);
149 [ts.factory.createObjectLiteralExpression(argumentsArray, true)]));