getCompilerState (lang) {

pull/1398/head
Aniket-Engg 3 years ago committed by Aniket
parent 2b2554638e
commit 744070fc0a
  1. 2
      apps/remix-ide/src/app/tabs/compileTab/compileTab.js
  2. 4
      libs/remix-ui/solidity-compiler/src/lib/logic/compileTabLogic.ts

@ -69,7 +69,7 @@ class CompileTab extends Plugin {
this.compiler.set('language', lang)
}
getCompilerState (lang) {
getCompilerState () {
return this.compiler.state
}

@ -60,6 +60,10 @@ export class CompileTab extends Plugin {
this.compiler.set('evmVersion', this.evmVersion)
}
getCompilerState () {
return this.compiler.state
}
/**
* Set the compiler to using Solidity or Yul (default to Solidity)
* @params lang {'Solidity' | 'Yul'} ...

Loading…
Cancel
Save