@@ -8799,7 +8799,7 @@ class BoundDeferredTrigger extends DeferredTrigger {
87998799 constructor(value, sourceSpan, prefetchSpan, whenSourceSpan) {
88008800 // BoundDeferredTrigger is for 'when' triggers. These aren't really "triggers" and don't have a
88018801 // nameSpan. Trigger names are the built in event triggers like hover, interaction, etc.
8802- super(/** nameSpan */null, sourceSpan, prefetchSpan, whenSourceSpan);
8802+ super( /** nameSpan */null, sourceSpan, prefetchSpan, whenSourceSpan);
88038803 this.value = value;
88048804 }
88058805}
@@ -10895,13 +10895,13 @@ function generateSetNgModuleScopeCall(meta) {
1089510895 return null;
1089610896 }
1089710897 // setNgModuleScope(...)
10898- const fnCall = new InvokeFunctionExpr(/* fn */importExpr(Identifiers.setNgModuleScope), /* args */[meta.type.value, scopeMap.toLiteralMap()]);
10898+ const fnCall = new InvokeFunctionExpr( /* fn */importExpr(Identifiers.setNgModuleScope), /* args */[meta.type.value, scopeMap.toLiteralMap()]);
1089910899 // (ngJitMode guard) && setNgModuleScope(...)
1090010900 const guardedCall = jitOnlyGuardedExpression(fnCall);
1090110901 // function() { (ngJitMode guard) && setNgModuleScope(...); }
10902- const iife = new FunctionExpr(/* params */[], /* statements */[guardedCall.toStmt()]);
10902+ const iife = new FunctionExpr( /* params */[], /* statements */[guardedCall.toStmt()]);
1090310903 // (function() { (ngJitMode guard) && setNgModuleScope(...); })()
10904- const iifeCall = new InvokeFunctionExpr(/* fn */iife, /* args */[]);
10904+ const iifeCall = new InvokeFunctionExpr( /* fn */iife, /* args */[]);
1090510905 return iifeCall.toStmt();
1090610906}
1090710907function tupleTypeOf(exp) {
@@ -29450,7 +29450,7 @@ function parseLetParameter(sourceSpan, expression, span, loopItemName, context,
2945029450 errors.push(new ParseError(sourceSpan, `Duplicate "let" parameter variable "${variableName}"`));
2945129451 } else {
2945229452 const [, keyLeadingWhitespace, keyName] = expressionParts[0].match(CHARACTERS_IN_SURROUNDING_WHITESPACE_PATTERN) ?? [];
29453- const keySpan = keyLeadingWhitespace !== undefined && expressionParts.length === 2 ? new ParseSourceSpan(/* strip leading spaces */
29453+ const keySpan = keyLeadingWhitespace !== undefined && expressionParts.length === 2 ? new ParseSourceSpan( /* strip leading spaces */
2945429454 startSpan.moveBy(keyLeadingWhitespace.length), /* advance to end of the variable name */
2945529455 startSpan.moveBy(keyLeadingWhitespace.length + keyName.length)) : span;
2945629456 let valueSpan = undefined;
@@ -30671,7 +30671,7 @@ function parseTemplate(template, templateUrl, options = {}) {
3067130671 // in `WhitespaceVisitor`. Using `visitAllWithSiblings` here would fix that bug and retain the
3067230672 // whitespace, however it would also change the runtime representation which we don't want to do
3067330673 // right now.
30674- rootNodes = visitAll(new WhitespaceVisitor(/* preserveSignificantWhitespace */true, /* originalNodeMap */undefined, /* requireContext */false), rootNodes);
30674+ rootNodes = visitAll(new WhitespaceVisitor( /* preserveSignificantWhitespace */true, /* originalNodeMap */undefined, /* requireContext */false), rootNodes);
3067530675 // run i18n meta visitor again in case whitespaces are removed (because that might affect
3067630676 // generated i18n message content) and first pass indicated that i18n content is present in a
3067730677 // template. During this pass i18n IDs generated at the first pass will be preserved, so we can
@@ -34247,7 +34247,7 @@ function createSerializer(format) {
3424734247 format = (format || 'xlf').toLowerCase();
3424834248 switch (format) {
3424934249 case 'xmb':
34250- return new Xmb(/* preservePlaceholders */true);
34250+ return new Xmb( /* preservePlaceholders */true);
3425134251 case 'xtb':
3425234252 return new Xtb();
3425334253 case 'xliff2':
@@ -34283,7 +34283,7 @@ class MessageBundle {
3428334283 // Trim unnecessary whitespace from extracted messages if requested. This
3428434284 // makes the messages more durable to trivial whitespace changes without
3428534285 // affected message IDs.
34286- const rootNodes = this._preserveWhitespace ? htmlParserResult.rootNodes : visitAllWithSiblings(new WhitespaceVisitor(/* preserveSignificantWhitespace */false), htmlParserResult.rootNodes);
34286+ const rootNodes = this._preserveWhitespace ? htmlParserResult.rootNodes : visitAllWithSiblings(new WhitespaceVisitor( /* preserveSignificantWhitespace */false), htmlParserResult.rootNodes);
3428734287 const i18nParserResult = extractMessages(rootNodes, interpolationConfig, this._implicitTags, this._implicitAttrs, /* preserveSignificantWhitespace */this._preserveWhitespace);
3428834288 if (i18nParserResult.errors.length) {
3428934289 return i18nParserResult.errors;
0 commit comments