(file: string)
| 15 | mapping: Record<string, string> = {}; |
| 16 | |
| 17 | static fromFile(file: string) { |
| 18 | const inst = new this(readFile(file)); |
| 19 | inst.file = file; |
| 20 | |
| 21 | return inst; |
| 22 | } |
| 23 | constructor(code: string) { |
| 24 | this.code = code; |
| 25 |
no test coverage detected