|
|
@ -207,7 +207,6 @@ class DebuggerUI { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
async unLoad () { |
|
|
|
async unLoad () { |
|
|
|
await this.debuggerModule.call('editor', 'discardHighlight') |
|
|
|
|
|
|
|
yo.update(this.debuggerHeadPanelsView, yo`<div></div>`) |
|
|
|
yo.update(this.debuggerHeadPanelsView, yo`<div></div>`) |
|
|
|
yo.update(this.debuggerPanelsView, yo`<div></div>`) |
|
|
|
yo.update(this.debuggerPanelsView, yo`<div></div>`) |
|
|
|
yo.update(this.stepManagerView, yo`<div></div>`) |
|
|
|
yo.update(this.stepManagerView, yo`<div></div>`) |
|
|
@ -220,6 +219,10 @@ class DebuggerUI { |
|
|
|
this.event.trigger('traceUnloaded') |
|
|
|
this.event.trigger('traceUnloaded') |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async deletHighlights () { |
|
|
|
|
|
|
|
await this.debuggerModule.call('editor', 'discardHighlight') |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
renderDebugger () { |
|
|
|
renderDebugger () { |
|
|
|
yo.update(this.debuggerHeadPanelsView, this.vmDebugger.renderHead()) |
|
|
|
yo.update(this.debuggerHeadPanelsView, this.vmDebugger.renderHead()) |
|
|
|
yo.update(this.debuggerPanelsView, this.vmDebugger.render()) |
|
|
|
yo.update(this.debuggerPanelsView, this.vmDebugger.render()) |
|
|
|