Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #184 from digeff/update_startup_new_signature
Browse files Browse the repository at this point in the history
Update FinishedStartingUpEventName to new signature
  • Loading branch information
roblourens authored Mar 26, 2018
2 parents 58072bb + cfead50 commit 9c1087f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/nodeDebugAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import * as errors from './errors';
import * as wsl from './wslSupport';

import * as nls from 'vscode-nls';
import { FinishedStartingUpEventArguments } from 'vscode-chrome-debug-core/lib/src/executionTimingsReporter';
let localize = nls.loadMessageBundle();

const DefaultSourceMapPathOverrides: ISourceMapPathOverrides = {
Expand Down Expand Up @@ -471,7 +472,7 @@ export class NodeDebugAdapter extends ChromeDebugAdapter {
await this.onPaused(this._entryPauseEvent);
}

this.events.emit(ChromeDebugSession.FinishedStartingUpEventName);
this.events.emit(ChromeDebugSession.FinishedStartingUpEventName, { requestedContentWasDetected: true } as FinishedStartingUpEventArguments);
await super.configurationDone();
}

Expand Down

0 comments on commit 9c1087f

Please sign in to comment.