mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
640693da8e
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