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

Commit

Permalink
Update FinishedStartingUpEventName to new signature
Browse files Browse the repository at this point in the history
  • Loading branch information
digeff committed Mar 26, 2018
1 parent 58072bb commit cfead50
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 cfead50

Please sign in to comment.