remix-debug related code updated in remix-ide

pull/697/head
aniket-engg 4 years ago committed by Aniket
parent 32402380e0
commit 8b1df55fff
  1. 2
      apps/remix-ide/src/app/editor/contextView.js
  2. 2
      apps/remix-ide/src/app/editor/contextualListener.js
  3. 2
      apps/remix-ide/src/lib/offsetToLineColumnConverter.js

@ -28,7 +28,7 @@ class ContextView {
this._view = null
this._nodes = null
this._current = null
this.sourceMappingDecoder = new SourceMappingDecoder()
this.sourceMappingDecoder = SourceMappingDecoder
this.previousElement = null
this.contextualListener.event.register('contextChanged', nodes => {
this.show()

@ -39,7 +39,7 @@ class ContextualListener extends Plugin {
this._activeHighlights = []
this.editor.event.register('contentChanged', () => { this._stopHighlighting() })
this.sourceMappingDecoder = new SourceMappingDecoder()
this.sourceMappingDecoder = SourceMappingDecoder
this.astWalker = new AstWalker()
}

@ -14,7 +14,7 @@ export class OffsetToLineColumnConverter extends Plugin {
constructor () {
super(profile)
this.lineBreakPositionsByContent = {}
this.sourceMappingDecoder = new SourceMappingDecoder()
this.sourceMappingDecoder = SourceMappingDecoder
}
/**

Loading…
Cancel
Save