File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -569,7 +569,6 @@ export class ObjectScriptDebugSession extends LoggingDebugSession {
569
569
570
570
response . body = {
571
571
value : args . value ,
572
- variablesReference : args . variablesReference ,
573
572
} ;
574
573
this . sendResponse ( response ) ;
575
574
}
@@ -579,10 +578,11 @@ export class ObjectScriptDebugSession extends LoggingDebugSession {
579
578
response : DebugProtocol . Response ,
580
579
codeOrMessage : number | DebugProtocol . Message ,
581
580
format ?: string ,
581
+ // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
582
582
variables ?: any ,
583
583
dest ?: ErrorDestination
584
584
) : void ;
585
- protected sendErrorResponse ( response : DebugProtocol . Response , ...rest ) : void {
585
+ protected sendErrorResponse ( response : DebugProtocol . Response , ...rest : any [ ] ) : void {
586
586
if ( rest [ 0 ] instanceof Error ) {
587
587
const error = rest [ 0 ] as Error & { code ?: number | string ; errno ?: number } ;
588
588
const dest = rest [ 1 ] as ErrorDestination ;
You can’t perform that action at this time.
0 commit comments