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
2809606e
Commit
2809606e
authored
Jul 02, 2020
by
LianaHus
Committed by
ioedeveloper
Jul 13, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
showing stepDetails on start
parent
02265ee0
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
VmDebugger.js
.../remix-ide/src/app/tabs/debugger/debuggerUI/VmDebugger.js
+1
-0
SolidityState.js
.../app/tabs/debugger/debuggerUI/vmDebugger/SolidityState.js
+2
-1
StepDetail.js
...src/app/tabs/debugger/debuggerUI/vmDebugger/StepDetail.js
+0
-1
No files found.
apps/remix-ide/src/app/tabs/debugger/debuggerUI/VmDebugger.js
View file @
2809606e
...
...
@@ -108,6 +108,7 @@ function VmDebugger (vmDebuggerLogic) {
self
.
functionPanel
.
basicPanel
.
show
()
self
.
storagePanel
.
basicPanel
.
show
()
self
.
memoryPanel
.
basicPanel
.
show
()
self
.
stepDetail
.
basicPanel
.
show
()
self
.
calldataPanel
.
basicPanel
.
show
()
self
.
callstackPanel
.
basicPanel
.
show
()
})
...
...
apps/remix-ide/src/app/tabs/debugger/debuggerUI/vmDebugger/SolidityState.js
View file @
2809606e
...
...
@@ -26,7 +26,8 @@ SolidityState.prototype.setUpdating = function () {
SolidityState
.
prototype
.
render
=
function
()
{
if
(
this
.
view
)
return
this
.
view
=
yo
`<div id='soliditystate' >
this
.
view
=
yo
`
<div id='soliditystate' >
${
this
.
basicPanel
.
render
()}
</div>`
return
this
.
view
...
...
apps/remix-ide/src/app/tabs/debugger/debuggerUI/vmDebugger/StepDetail.js
View file @
2809606e
...
...
@@ -3,7 +3,6 @@ var DropdownPanel = require('./DropdownPanel')
function
StepDetail
()
{
this
.
basicPanel
=
new
DropdownPanel
(
'Step details'
,
{
json
:
true
,
displayContentOnly
:
false
})
this
.
basicPanel
.
show
()
this
.
detail
=
{
'vm trace step'
:
'-'
,
'execution step'
:
'-'
,
'add memory'
:
''
,
'gas'
:
''
,
'remaining gas'
:
'-'
,
'loaded address'
:
'-'
}
}
...
...
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