mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit adds a phase to the template pipeline to merge `nextContext()` instructions that follow each other without context reads in between. That is, the sequence: ```typescript nextContext(); var v1 = nextContext(); ``` becomes: ```typescript var v1 = nextContext(2); ``` PR Close #49797 |
||
|---|---|---|
| .. | ||
| design | ||
| src | ||
| test | ||
| testing | ||
| BUILD.bazel | ||
| compiler.ts | ||
| index.ts | ||
| package.json | ||
| public_api.ts | ||