Register a VFS path whose (expensive) content is produced on demand.
(path: string, loader: () => Promise<string | null>)
| 405 | |
| 406 | /** Register a VFS path whose (expensive) content is produced on demand. */ |
| 407 | private registerLazy(path: string, loader: () => Promise<string | null>): void { |
| 408 | this.lazy.set(path, loader) |
| 409 | } |
| 410 | |
| 411 | /** |
| 412 | * Load a workflow's normalized state once per instance. state.json and lint.json |
no test coverage detected