* Run `fn` in the given `PerfPhase` and return the result. * * Enters `phase` before executing the given `fn`, then exits the phase and returns the result. * Prefer this API to `phase()` where possible.
(phase: PerfPhase, fn: () => T)
| 398 | * Prefer this API to `phase()` where possible. |
| 399 | */ |
| 400 | inPhase<T>(phase: PerfPhase, fn: () => T): T; |
| 401 | |
| 402 | /** |
| 403 | * Record the memory usage of the compiler at the given checkpoint. |
no outgoing calls
no test coverage detected