* , [stdin], and [eval] are all essentially virtual files that do not exist on disc and are backed by a REPL * service to handle eval-ing of code.
| 487 | * service to handle eval-ing of code. |
| 488 | */ |
| 489 | interface VirtualFileState { |
| 490 | state: EvalState; |
| 491 | repl: ReplService; |
| 492 | module?: Module; |
| 493 | } |
| 494 | let evalStuff: VirtualFileState | undefined; |
| 495 | let replStuff: VirtualFileState | undefined; |
| 496 | let stdinStuff: VirtualFileState | undefined; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…