mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
37c8fd79ac
This adds the support of `let index as myIndex` in `*ngFor` for the control flow migration. Before: `@for (itm of items; track itm)` After: `@for (itm of items; track itm; let myIndex = $index)` PR Close #52183