mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
consecutive `@case` blocks are now supported:
```ts
@switch (case) {
@case (0)
@case (1) {
case 0 or 1
}
@case (2) {
case 2
}
@default {
default
}
}
```
fixes #14659
|
||
|---|---|---|
| .. | ||
| BUILD.bazel | ||
| defer.md | ||
| for.md | ||
| if.md | ||
| let.md | ||
| switch.md | ||