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
8e5b7ec0
Commit
8e5b7ec0
authored
Dec 14, 2016
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typo fix
parent
d599f95a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
Ethdebugger.js
src/ui/Ethdebugger.js
+1
-1
SolidityLocals.js
src/ui/SolidityLocals.js
+2
-2
No files found.
src/ui/Ethdebugger.js
View file @
8e5b7ec0
...
@@ -30,7 +30,7 @@ function Ethdebugger () {
...
@@ -30,7 +30,7 @@ function Ethdebugger () {
this
.
codeManager
=
new
CodeManager
(
this
.
traceManager
)
this
.
codeManager
=
new
CodeManager
(
this
.
traceManager
)
this
.
solidityProxy
=
new
SolidityProxy
(
this
.
traceManager
,
this
.
codeManager
)
this
.
solidityProxy
=
new
SolidityProxy
(
this
.
traceManager
,
this
.
codeManager
)
var
callTree
=
new
InternalCallTree
(
this
.
event
,
this
.
traceManager
,
this
.
solidityProxy
,
this
.
codeManager
)
var
callTree
=
new
InternalCallTree
(
this
.
event
,
this
.
traceManager
,
this
.
solidityProxy
,
this
.
codeManager
,
{
includeLocalsVariables
:
true
}
)
this
.
event
.
register
(
'indexChanged'
,
this
,
function
(
index
)
{
this
.
event
.
register
(
'indexChanged'
,
this
,
function
(
index
)
{
self
.
codeManager
.
resolveStep
(
index
,
self
.
tx
)
self
.
codeManager
.
resolveStep
(
index
,
self
.
tx
)
...
...
src/ui/SolidityLocals.js
View file @
8e5b7ec0
...
@@ -29,11 +29,11 @@ class SolidityLocals {
...
@@ -29,11 +29,11 @@ class SolidityLocals {
this
.
traceManager
.
getStackAt
,
this
.
traceManager
.
getStackAt
,
this
.
traceManager
.
getMemoryAt
],
this
.
traceManager
.
getMemoryAt
],
index
,
index
,
function
(
error
,
result
)
{
(
error
,
result
)
=>
{
if
(
!
error
)
{
if
(
!
error
)
{
var
stack
=
result
[
0
].
value
var
stack
=
result
[
0
].
value
var
memory
=
result
[
1
].
value
var
memory
=
result
[
1
].
value
var
locals
=
localDecoder
.
solidity
l
ocals
(
index
,
this
.
internalTreeCall
,
stack
,
memory
)
var
locals
=
localDecoder
.
solidity
L
ocals
(
index
,
this
.
internalTreeCall
,
stack
,
memory
)
this
.
basicPanel
.
update
(
locals
)
this
.
basicPanel
.
update
(
locals
)
}
}
})
})
...
...
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