(readonly codeByFilename: {[filename: string]: string})
| 81 | moduleExportsCache: {[filename: string]: unknown} = {}; |
| 82 | |
| 83 | constructor(readonly codeByFilename: {[filename: string]: string}) {} |
| 84 | |
| 85 | evaluateModule(filename: string): unknown { |
| 86 | if (filename in this.moduleExportsCache) { |
nothing calls this directly
no outgoing calls
no test coverage detected