linting fix

pull/5370/head
aniket-engg 5 years ago
parent 0cf14a1cd2
commit abbd1244df
  1. 5
      remix-tests/src/compiler.ts

@ -106,9 +106,10 @@ export function compileContractSources(sources: SrcIfc, versionUrl: any, usingWo
function loadCompiler (next: Function) { function loadCompiler (next: Function) {
compiler = new RemixCompiler(importFileCb) compiler = new RemixCompiler(importFileCb)
compiler.loadVersion(usingWorker, versionUrl) compiler.loadVersion(usingWorker, versionUrl)
compiler.event.register('compilerLoaded', this, function (version) { // @ts-ignore
compiler.event.register('compilerLoaded', this, (version) => {
next() next()
}); })
}, },
function doCompilation (next: Function) { function doCompilation (next: Function) {
// @ts-ignore // @ts-ignore

Loading…
Cancel
Save