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
552a9d6d
Commit
552a9d6d
authored
Aug 17, 2021
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove config dep left over
parent
94dd0280
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
compile-tab.js
apps/remix-ide/src/app/tabs/compile-tab.js
+0
-1
compileTabLogic.ts
...mix-ui/solidity-compiler/src/lib/logic/compileTabLogic.ts
+1
-1
No files found.
apps/remix-ide/src/app/tabs/compile-tab.js
View file @
552a9d6d
...
@@ -54,7 +54,6 @@ class CompileTab extends ViewPlugin {
...
@@ -54,7 +54,6 @@ class CompileTab extends ViewPlugin {
}
}
this
.
compileTabLogic
=
new
CompileTabLogic
(
this
,
this
.
compileTabLogic
=
new
CompileTabLogic
(
this
,
this
.
fileManager
,
this
.
fileManager
,
this
.
config
,
this
.
fileProvider
,
this
.
fileProvider
,
this
.
contentImport
,
this
.
contentImport
,
this
.
setCompileErrors
.
bind
(
this
)
this
.
setCompileErrors
.
bind
(
this
)
...
...
libs/remix-ui/solidity-compiler/src/lib/logic/compileTabLogic.ts
View file @
552a9d6d
...
@@ -18,7 +18,7 @@ export class CompileTab extends Plugin {
...
@@ -18,7 +18,7 @@ export class CompileTab extends Plugin {
public
compilerImport
public
compilerImport
public
event
public
event
constructor
(
public
api
,
public
fileManager
,
public
con
fig
,
public
fileProvider
,
public
con
tentImport
)
{
constructor
(
public
api
,
public
fileManager
,
public
contentImport
)
{
super
(
profile
)
super
(
profile
)
this
.
event
=
new
EventEmitter
()
this
.
event
=
new
EventEmitter
()
this
.
compiler
=
new
Compiler
((
url
,
cb
)
=>
this
.
call
(
'contentImport'
,
'resolveAndSave'
,
url
).
then
((
result
)
=>
cb
(
null
,
result
)).
catch
((
error
)
=>
cb
(
error
.
message
)))
this
.
compiler
=
new
Compiler
((
url
,
cb
)
=>
this
.
call
(
'contentImport'
,
'resolveAndSave'
,
url
).
then
((
result
)
=>
cb
(
null
,
result
)).
catch
((
error
)
=>
cb
(
error
.
message
)))
...
...
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