Commit ab94f545 authored by LianaHus's avatar LianaHus Committed by Liana Husikyan

fixed standard issues

parent 58a5755d
...@@ -124,7 +124,7 @@ class CompilerContainer { ...@@ -124,7 +124,7 @@ class CompilerContainer {
const pragmaStr = pragmaArr[0].replace('pragma solidity', '').trim() const pragmaStr = pragmaArr[0].replace('pragma solidity', '').trim()
const pragma = pragmaStr.substring(0, pragmaStr.length - 1) const pragma = pragmaStr.substring(0, pragmaStr.length - 1)
const fixedVersions = this.data.allversions.filter(obj => !obj.prerelease).map(obj => obj.version) const fixedVersions = this.data.allversions.filter(obj => !obj.prerelease).map(obj => obj.version)
if (!semver.satisfies( this._retrieveVersion(), pragma)) { if (!semver.satisfies(this._retrieveVersion(), pragma)) {
const compilerToLoad = semver.maxSatisfying(fixedVersions, pragma) const compilerToLoad = semver.maxSatisfying(fixedVersions, pragma)
const compilerPath = this.data.allversions.filter(obj => !obj.prerelease && obj.version === compilerToLoad)[0].path const compilerPath = this.data.allversions.filter(obj => !obj.prerelease && obj.version === compilerToLoad)[0].path
if (this.data.selectedVersion !== compilerPath) { if (this.data.selectedVersion !== compilerPath) {
...@@ -359,7 +359,7 @@ class CompilerContainer { ...@@ -359,7 +359,7 @@ class CompilerContainer {
} }
_updateLanguageSelector () { _updateLanguageSelector () {
/// This is the first version when Yul is available // This is the first version when Yul is available
if (semver.lt(this._retrieveVersion(), 'v0.5.7+commit.6da8b019.js')) { if (semver.lt(this._retrieveVersion(), 'v0.5.7+commit.6da8b019.js')) {
this._view.languageSelector.setAttribute('disabled', '') this._view.languageSelector.setAttribute('disabled', '')
this._view.languageSelector.value = 'Solidity' this._view.languageSelector.value = 'Solidity'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment