Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
c017fd69
Commit
c017fd69
authored
Jan 27, 2020
by
step21
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parent
9967015c
author step21 <step21@devtal.de> 1580159823 +0100 committer step21 <step21@devtal.de> 1582131959 +0100 Lexon modifications
parent
9967015c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
0 deletions
+15
-0
compiler-artefacts.js
src/app/compiler/compiler-artefacts.js
+4
-0
dropdownlogic.js
src/app/tabs/runTab/model/dropdownlogic.js
+3
-0
workspace.js
src/app/ui/landing-page/workspace.js
+8
-0
No files found.
src/app/compiler/compiler-artefacts.js
View file @
c017fd69
...
@@ -28,5 +28,9 @@ module.exports = class CompilerArtefacts extends Plugin {
...
@@ -28,5 +28,9 @@ module.exports = class CompilerArtefacts extends Plugin {
this
.
on
(
'vyper'
,
'compilationFinished'
,
(
file
,
source
,
languageVersion
,
data
)
=>
{
this
.
on
(
'vyper'
,
'compilationFinished'
,
(
file
,
source
,
languageVersion
,
data
)
=>
{
this
.
compilersArtefacts
[
'__last'
]
=
new
CompilerAbstract
(
languageVersion
,
data
,
source
)
this
.
compilersArtefacts
[
'__last'
]
=
new
CompilerAbstract
(
languageVersion
,
data
,
source
)
})
})
this
.
on
(
'lexon'
,
'compilationFinished'
,
(
file
,
source
,
languageVersion
,
data
)
=>
{
this
.
compilersArtefacts
[
'__last'
]
=
new
CompilerAbstract
(
languageVersion
,
data
,
source
)
})
}
}
}
}
src/app/tabs/runTab/model/dropdownlogic.js
View file @
c017fd69
...
@@ -31,6 +31,9 @@ class DropdownLogic {
...
@@ -31,6 +31,9 @@ class DropdownLogic {
this
.
runView
.
on
(
'vyper'
,
'compilationFinished'
,
(
file
,
source
,
languageVersion
,
data
)
=>
this
.
runView
.
on
(
'vyper'
,
'compilationFinished'
,
(
file
,
source
,
languageVersion
,
data
)
=>
broadcastCompilationResult
(
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
)
{
loadContractFromAddress
(
address
,
confirmCb
,
cb
)
{
...
...
src/app/ui/landing-page/workspace.js
View file @
c017fd69
...
@@ -28,6 +28,14 @@ export const defaultWorkspaces = (appManager) => {
...
@@ -28,6 +28,14 @@ export const defaultWorkspaces = (appManager) => {
appManager
.
ensureActivated
(
'vyper'
)
appManager
.
ensureActivated
(
'vyper'
)
appManager
.
ensureActivated
(
'udapp'
)
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
,
()
=>
{
new
Workspace
(
'Debugger'
,
'Debug transactions with remix'
,
false
,
()
=>
{
appManager
.
ensureActivated
(
'debugger'
)
appManager
.
ensureActivated
(
'debugger'
)
},
()
=>
{}),
},
()
=>
{}),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment