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
c82b0d5c
Commit
c82b0d5c
authored
Nov 30, 2020
by
GrandSchtroumpf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove workspace.js
parent
607432c2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
48 deletions
+0
-48
workspace.js
apps/remix-ide/src/app/ui/landing-page/workspace.js
+0
-48
No files found.
apps/remix-ide/src/app/ui/landing-page/workspace.js
deleted
100644 → 0
View file @
607432c2
export
class
Workspace
{
constructor
(
title
,
description
,
isMain
,
activate
,
deactivate
)
{
this
.
title
=
title
this
.
description
=
description
this
.
isMain
=
isMain
this
.
activate
=
activate
this
.
deactivate
=
deactivate
}
}
export
const
defaultWorkspaces
=
(
appManager
)
=>
{
return
[
new
Workspace
(
'Solidity'
,
'Writing smart contracts. It is used for implementing smart contracts on various blockchain platforms'
,
true
,
()
=>
{
appManager
.
ensureActivated
(
'solidity'
)
appManager
.
ensureActivated
(
'udapp'
)
appManager
.
ensureActivated
(
'solidityStaticAnalysis'
)
appManager
.
ensureActivated
(
'solidityUnitTesting'
)
},
()
=>
{}),
new
Workspace
(
'Vyper'
,
'Vyper is a contract-oriented, pythonic programming language that targets the Ethereum Virtual Machine (EVM)'
,
true
,
()
=>
{
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'
)
},
()
=>
{}),
new
Workspace
(
'Pipeline'
,
''
,
false
,
()
=>
{
appManager
.
ensureActivated
(
'solidity'
)
appManager
.
ensureActivated
(
'pipeline'
)
appManager
.
ensureActivated
(
'udapp'
)
})
]
}
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