Commit 9dc333f9 authored by yann300's avatar yann300

display raw stack value in debugger

parent ac4c407a
......@@ -26,19 +26,10 @@ StackPanel.prototype.init = function () {
self.basicPanel.update({})
console.log(error)
} else if (self.parent.currentStepIndex === index) {
self.basicPanel.update(self.format(stack))
self.basicPanel.update(stack)
}
})
})
}
StackPanel.prototype.format = function (stack) {
var ret = []
stack.map(function (item, i) {
var hex = ui.normalizeHex(item)
ret.push(hex)
})
return ret
}
module.exports = StackPanel
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment