Unverified Commit 1026ea93 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #2557 from step21/master

Listening to Lexon compilation finished.
parents be3eeb80 c017fd69
......@@ -28,5 +28,9 @@ module.exports = class CompilerArtefacts extends Plugin {
this.on('vyper', 'compilationFinished', (file, source, languageVersion, data) => {
this.compilersArtefacts['__last'] = new CompilerAbstract(languageVersion, data, source)
})
this.on('lexon', 'compilationFinished', (file, source, languageVersion, data) => {
this.compilersArtefacts['__last'] = new CompilerAbstract(languageVersion, data, source)
})
}
}
......@@ -31,6 +31,9 @@ class DropdownLogic {
this.runView.on('vyper', 'compilationFinished', (file, source, languageVersion, data) =>
broadcastCompilationResult(file, source, languageVersion, data)
)
this.runView.on('lexon', 'compilationFinished', (file, source, languageVersion, data) =>
broadcastCompilationResult(file, source, languageVersion, data)
)
}
loadContractFromAddress (address, confirmCb, cb) {
......
......@@ -28,6 +28,14 @@ export const defaultWorkspaces = (appManager) => {
appManager.ensureActivated('vyper')
appManager.ensureActivated('udapp')
}, () => {}),
new Workspace(
'Lexon',
'Lexon is a language modelling legal contracts that compiles down to ethereum smart contracts',
true,
() => {
appManager.ensureActivated('lexon')
appManager.ensureActivated('udapp')
}, () => {}),
new Workspace('Debugger', 'Debug transactions with remix', false, () => {
appManager.ensureActivated('debugger')
}, () => {}),
......
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