Skip to content

Commit 9fc638a

Browse files
committed
98bf4d5 build: disable remote upload of local action results to RBE cache (#60568)
1 parent 8ba6a15 commit 9fc638a

20 files changed

+64
-43
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Tue Mar 25 18:04:31 UTC 2025
2-
6d3849ffc85cc52b0eba3836b24f10895621acbe
1+
Thu Mar 27 03:56:32 UTC 2025
2+
98bf4d5afd820cdbc2d8e177e6d3292c6d6ee9bc

bundles/chunk-J5FLCPEP.js renamed to bundles/chunk-5MOIRYIZ.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

bundles/chunk-LYPQBG6H.js renamed to bundles/chunk-GWRAQOUD.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/chunk-LYPQBG6H.js.map renamed to bundles/chunk-GWRAQOUD.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundles/chunk-BMTJXLP7.js renamed to bundles/chunk-ISFJNCM6.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

bundles/chunk-YWJLVBJO.js renamed to bundles/chunk-JS2YOFBF.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

bundles/chunk-6FWQSLK4.js renamed to bundles/chunk-TVFKPPMT.js

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8102,8 +8102,24 @@ function createNodeFromListenerDecorator(decorator, parser, listeners) {
81028102
}
81038103
const callNode = new Call(span, nameSpan, receiver, argNodes, span);
81048104
const eventNameNode = args[0];
8105-
const [eventName, phase] = eventNameNode.text.split(".");
8106-
listeners.push(new TmplAstBoundEvent(eventName, eventName.startsWith("@") ? ParsedEventType.Animation : ParsedEventType.Regular, callNode, null, phase, createSourceSpan(decorator), createSourceSpan(decorator), createStaticExpressionSpan(eventNameNode)));
8105+
let type;
8106+
let eventName;
8107+
let phase;
8108+
let target;
8109+
if (eventNameNode.text.startsWith("@")) {
8110+
const parsedName = parser.parseAnimationEventName(eventNameNode.text);
8111+
type = ParsedEventType.Animation;
8112+
eventName = parsedName.eventName;
8113+
phase = parsedName.phase;
8114+
target = null;
8115+
} else {
8116+
const parsedName = parser.parseEventListenerName(eventNameNode.text);
8117+
type = ParsedEventType.Regular;
8118+
eventName = parsedName.eventName;
8119+
target = parsedName.target;
8120+
phase = null;
8121+
}
8122+
listeners.push(new TmplAstBoundEvent(eventName, type, callNode, target, phase, createSourceSpan(decorator), createSourceSpan(decorator), createStaticExpressionSpan(eventNameNode)));
81078123
}
81088124
function inferBoundAttribute(name) {
81098125
const attrPrefix = "attr.";
@@ -9964,10 +9980,15 @@ var TcbUnclaimedOutputsOp = class extends TcbOp {
99649980
this.scope.addStatement(ts39.factory.createExpressionStatement(handler));
99659981
} else if (this.tcb.env.config.checkTypeOfDomEvents) {
99669982
const handler = tcbCreateEventHandler(output, this.tcb, this.scope, 0);
9967-
if (elId === null) {
9968-
elId = this.scope.resolve(this.target);
9983+
let target;
9984+
if (output.target === "window" || output.target === "document") {
9985+
target = ts39.factory.createIdentifier(output.target);
9986+
} else if (elId === null) {
9987+
target = elId = this.scope.resolve(this.target);
9988+
} else {
9989+
target = elId;
99699990
}
9970-
const propertyAccess = ts39.factory.createPropertyAccessExpression(elId, "addEventListener");
9991+
const propertyAccess = ts39.factory.createPropertyAccessExpression(target, "addEventListener");
99719992
addParseSpanInfo(propertyAccess, output.keySpan);
99729993
const call = ts39.factory.createCallExpression(
99739994
propertyAccess,
@@ -16125,4 +16146,4 @@ export {
1612516146
* Use of this source code is governed by an MIT-style license that can be
1612616147
* found in the LICENSE file at https://angular.dev/license
1612716148
*/
16128-
//# sourceMappingURL=chunk-6FWQSLK4.js.map
16149+
//# sourceMappingURL=chunk-TVFKPPMT.js.map

0 commit comments

Comments
 (0)