We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d239f13 commit b434358Copy full SHA for b434358
packages/node/src/integrations/localvariables.ts
@@ -79,6 +79,8 @@ class AsyncSession implements DebugSession {
79
private _getProperties(objectId: string): Promise<Runtime.PropertyDescriptor[]> {
80
return new Promise((resolve, reject) => {
81
if (!this._session) {
82
+ // eslint-disable-next-line no-console
83
+ console.error('Session is not available');
84
reject(new Error('Session is not available'));
85
return;
86
}
@@ -205,7 +207,7 @@ export class LocalVariables implements Integration {
205
207
public constructor(
206
208
private readonly _options: Options = {},
209
private readonly _session: DebugSession | undefined = tryNewAsyncSession(),
- ) { }
210
+ ) {}
211
212
/**
213
* @inheritDoc
0 commit comments