angular/packages/compiler-cli/test
Matthieu Riegler 03db2aefaa fix(compiler): throw on duplicate input/outputs
inputs & outputs cannot be binded to 2 different directives/components properties

Eg
```
data = model();
dataChange = output(); // throws because model already emits on the `dataChange` output

userSomething = input({alias 'user'});
user = input(); // throws because userSomething already binds to the `user` input
````

fixes #65844

BREAKING CHANGE: The compiler will throw when there a when inputs, outputs or model are binding to the same input/outputs.
2026-02-26 13:47:37 -08:00
..
compliance fix(compiler): throw on duplicate input/outputs 2026-02-26 13:47:37 -08:00
ngtsc fix(compiler): throw on duplicate input/outputs 2026-02-26 13:47:37 -08:00
BUILD.bazel test(compiler): remove zone-based testing utilities 2026-02-05 16:56:55 -08:00
extract_i18n_spec.ts feat(core): add support for TypeScript 6 2026-02-17 08:40:38 -08:00
mocks.ts refactor: update license text to point to angular.dev (#57901) 2024-09-24 15:33:00 +02:00
perform_compile_spec.ts feat(core): add support for TypeScript 6 2026-02-17 08:40:38 -08:00
perform_watch_spec.ts feat(core): add support for TypeScript 6 2026-02-17 08:40:38 -08:00
test_support.ts feat(core): add support for TypeScript 6 2026-02-17 08:40:38 -08:00
typescript_support_spec.ts refactor: update license text to point to angular.dev (#57901) 2024-09-24 15:33:00 +02:00
version_helpers_spec.ts refactor: update license text to point to angular.dev (#57901) 2024-09-24 15:33:00 +02:00