(options: GenerationDevtoolsBridgeOptions<TOutput>)
| 1306 | protected readonly getCoreState: () => GenerationDevtoolsCoreState<TOutput> |
| 1307 | |
| 1308 | constructor(options: GenerationDevtoolsBridgeOptions<TOutput>) { |
| 1309 | super({ |
| 1310 | ...options, |
| 1311 | getSnapshot: () => this.buildSnapshot(), |
| 1312 | }) |
| 1313 | this.maxRuns = options.maxRuns ?? 20 |
| 1314 | this.getCoreState = options.getCoreState |
| 1315 | } |
| 1316 | |
| 1317 | // --- Run lifecycle (called by GenerationClient) ----------------------- |
| 1318 |
nothing calls this directly
no test coverage detected