(compilerInfo: PreliminaryCompilerInfo, env: CompilationEnvironment)
| 39 | } |
| 40 | |
| 41 | constructor(compilerInfo: PreliminaryCompilerInfo, env: CompilationEnvironment) { |
| 42 | super(compilerInfo, env); |
| 43 | this.compiler.demangler = ''; |
| 44 | this.demanglerClass = null; |
| 45 | this.disasmScriptPath = |
| 46 | this.compilerProps<string>('disasmScript') || |
| 47 | resolvePathFromAppRoot('etc', 'scripts', 'disasms', 'dis_all.py'); |
| 48 | } |
| 49 | |
| 50 | override async processAsm(result) { |
| 51 | const lineRe = /^\s{0,4}(\d+)(.*)/; |
nothing calls this directly
no test coverage detected