getCompilerState (lang) {

pull/5370/head
Aniket-Engg 3 years ago committed by Aniket
parent 878b538faf
commit a60f538046
  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) this.compiler.set('language', lang)
} }
getCompilerState (lang) { getCompilerState () {
return this.compiler.state return this.compiler.state
} }

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

Loading…
Cancel
Save