linting fix

pull/7/head
aniket-engg 5 years ago
parent 3f037c3318
commit a69f11bef0
  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