Commit 8b1df55f authored by aniket-engg's avatar aniket-engg Committed by Aniket

remix-debug related code updated in remix-ide

parent 32402380
...@@ -28,7 +28,7 @@ class ContextView { ...@@ -28,7 +28,7 @@ class ContextView {
this._view = null this._view = null
this._nodes = null this._nodes = null
this._current = null this._current = null
this.sourceMappingDecoder = new SourceMappingDecoder() this.sourceMappingDecoder = SourceMappingDecoder
this.previousElement = null this.previousElement = null
this.contextualListener.event.register('contextChanged', nodes => { this.contextualListener.event.register('contextChanged', nodes => {
this.show() this.show()
......
...@@ -39,7 +39,7 @@ class ContextualListener extends Plugin { ...@@ -39,7 +39,7 @@ class ContextualListener extends Plugin {
this._activeHighlights = [] this._activeHighlights = []
this.editor.event.register('contentChanged', () => { this._stopHighlighting() }) this.editor.event.register('contentChanged', () => { this._stopHighlighting() })
this.sourceMappingDecoder = new SourceMappingDecoder() this.sourceMappingDecoder = SourceMappingDecoder
this.astWalker = new AstWalker() this.astWalker = new AstWalker()
} }
......
...@@ -14,7 +14,7 @@ export class OffsetToLineColumnConverter extends Plugin { ...@@ -14,7 +14,7 @@ export class OffsetToLineColumnConverter extends Plugin {
constructor () { constructor () {
super(profile) super(profile)
this.lineBreakPositionsByContent = {} this.lineBreakPositionsByContent = {}
this.sourceMappingDecoder = new SourceMappingDecoder() this.sourceMappingDecoder = SourceMappingDecoder
} }
/** /**
......
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