* Sends a 'loadedSource' event for the given source.
(source: Source)
| 850 | * Sends a 'loadedSource' event for the given source. |
| 851 | */ |
| 852 | public emitLoadedSource(source: Source): Promise<void> { |
| 853 | source.hasBeenAnnounced = true; |
| 854 | return source.toDap().then(dap => this._dap.loadedSource({ reason: 'new', source: dap })); |
| 855 | } |
| 856 | |
| 857 | async _addSourceMapSources(compiled: ISourceWithMap, map: SourceMap) { |
| 858 | const todo: Promise<unknown>[] = []; |
no test coverage detected