|
|
|
@ -28,10 +28,7 @@ class AnalysisTab extends ViewPlugin { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
render () { |
|
|
|
|
const listOfPlugins = localStorage.getItem('workspace') |
|
|
|
|
// Reset state if plugin is deactivated
|
|
|
|
|
if (!listOfPlugins.includes('solidityStaticAnalysis')) this.staticanalysis = null |
|
|
|
|
if (!this.staticanalysis) this.staticanalysis = new StaticAnalysis(this.registry, this) |
|
|
|
|
this.staticanalysis = new StaticAnalysis(this.registry, this) |
|
|
|
|
this.staticanalysis.event.register('staticAnaysisWarning', (count) => { |
|
|
|
|
if (count > 0) { |
|
|
|
|
this.emit('statusChanged', { key: count, title: `${count} warning${count === 1 ? '' : 's'}`, type: 'warning' }) |
|
|
|
|