File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -351,7 +351,7 @@ export class LiveWatchTreeDataProvider implements vscode.TreeDataProvider<LiveWa
351351 await vscode . commands . executeCommand ( 'memory-inspector.show-variable' , args ) ;
352352 }
353353
354- private async handleEnablePeriodicUpdate ( ) : Promise < void > {
354+ private async handleEnablePeriodicUpdate ( ) : Promise < void > {
355355 const state = this . _activeSession ? this . sessionLiveWatchStates . get ( this . _activeSession . session . id ) : undefined ;
356356 if ( state ) {
357357 state . periodicUpdateEnabled = true ;
@@ -370,7 +370,7 @@ export class LiveWatchTreeDataProvider implements vscode.TreeDataProvider<LiveWa
370370 await vscode . commands . executeCommand ( 'setContext' , 'liveWatch.periodicUpdateEnabled' , false ) ;
371371 logger . info ( 'Live Watch: Periodic Update disabled' ) ;
372372 }
373-
373+
374374 private async evaluateInitialExpression ( expression : string ) : Promise < LiveWatchValue > {
375375 const response : LiveWatchValue = { result : '' , variablesReference : 0 } ;
376376 if ( ! this . _activeSession ) {
@@ -410,7 +410,7 @@ export class LiveWatchTreeDataProvider implements vscode.TreeDataProvider<LiveWa
410410 node . value . type = result . type ?? '' ;
411411 return node . value ;
412412 }
413-
413+
414414 private async handleSetValueCommand ( node : LiveWatchNode ) {
415415 if ( ! node ) {
416416 return ;
You can’t perform that action at this time.
0 commit comments