From cfead501fde64f6491c7cdf29fd0218e690627a9 Mon Sep 17 00:00:00 2001 From: digeff Date: Mon, 26 Mar 2018 11:09:24 -0700 Subject: [PATCH] Update FinishedStartingUpEventName to new signature --- src/nodeDebugAdapter.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/nodeDebugAdapter.ts b/src/nodeDebugAdapter.ts index 8831b52b..d2fa365e 100644 --- a/src/nodeDebugAdapter.ts +++ b/src/nodeDebugAdapter.ts @@ -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 = { @@ -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(); }