You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Angular 19.2 runtime uses different instructions than Angular 20+:
- Combined `propertyInterpolate*`/`attributeInterpolate*`/`stylePropInterpolate*`/
`styleMapInterpolate*`/`classMapInterpolate*` instead of nested
`property(interpolate*())` calls
- `hostProperty` instead of `domProperty`
This adds `supports_value_interpolation()` (>= 20) and `supports_dom_property()`
(>= 20) version gates so the compiler emits the correct instructions based on
the target Angular version.
Also fixes `collapse_singleton_interpolations` to only collapse StyleProp/
StyleMap/ClassMap singletons on v20+ (v19 only collapsed Attribute), and
refactors the chaining phase's CHAIN_COMPATIBILITY from LazyLock<FxHashMap>
to a const fn match lookup.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
0 commit comments