fix(core): fix interpolate identifier in AOT (#30243)
This commit fixes a regression introduced in PR 29692 where the interpolate symbol in View Engine was improperly prefixed with the ɵɵ that signifies private instructions for Ivy. It resulted in interpolations of 10+ values not working correctly in AOT mode. This commit removes the prefix. PR Close #30243
This commit is contained in:
@ -92,7 +92,7 @@ export class Identifiers {
|
||||
name: 'ɵinlineInterpolate',
|
||||
moduleName: CORE,
|
||||
};
|
||||
static interpolate: o.ExternalReference = {name: 'ɵɵinterpolate', moduleName: CORE};
|
||||
static interpolate: o.ExternalReference = {name: 'ɵinterpolate', moduleName: CORE};
|
||||
static EMPTY_ARRAY: o.ExternalReference = {name: 'ɵEMPTY_ARRAY', moduleName: CORE};
|
||||
static EMPTY_MAP: o.ExternalReference = {name: 'ɵEMPTY_MAP', moduleName: CORE};
|
||||
static Renderer: o.ExternalReference = {name: 'Renderer', moduleName: CORE};
|
||||
|
Reference in New Issue
Block a user