-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactored debuggerUI #2866
refactored debuggerUI #2866
Conversation
LianaHus
commented
May 28, 2020
- using SourceHighlight fix https://github.com/ethereum/remix-ide/issues/2834
- removed self
src/app/tabs/debugger/debuggerUI.js
Outdated
} | ||
}) | ||
|
||
this.debugger.event.register('debuggerUnloaded', self.unLoad.bind(this)) | ||
this.debugger.event.register('debuggerUnloaded', () => unLoad) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unLoad
is this working
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no shouldn't
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@yann300 pushed another commit
d8be520
to
5d698c2
Compare
b0aac7a
to
8da1d9c
Compare
src/app/tabs/debugger-tab.js
Outdated
@@ -71,7 +71,7 @@ class DebuggerTab extends ViewPlugin { | |||
} | |||
|
|||
deactivate () { | |||
this.debuggerUI.unLoad() | |||
this.debuggerUI.deletHighlights() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo deletHighlights
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pushed the fix