mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
2aefed8763
Currently, the following template compiles without error, even if the signal is not properly called:
```
<div>{{ mySignal.name }}</div>
```
This is because `name` is one of the instance properties of Function (see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function#instance_properties).
The interpolated signal diagnostic is now extended to catch such issues.
PR Close #54325