@@ -497,20 +497,20 @@ public void decorate(final EventSnapshot eventSnapshot, final FrameProcessor fra
497497 if (this .throwable != null ) {
498498 final List <VariableID > variableIds = frameProcessor .processVars (Collections .singletonMap ("thrown" , this .throwable ));
499499 final Map <String , Variable > watchLookup = frameProcessor .closeLookup ();
500- eventSnapshot .addWatchResult (new WatchResult ("thrown" , variableIds .get (0 ), WatchResult .WATCH ));
500+ eventSnapshot .addWatchResult (new WatchResult ("thrown" , variableIds .get (0 ), WatchResult .CAPTURE ));
501501 eventSnapshot .mergeVariables (watchLookup );
502502 }
503503
504504 if (this .isSet ) {
505505 final List <VariableID > variableIds = frameProcessor .processVars (Collections .singletonMap ("return" , this .value ));
506506 final Map <String , Variable > watchLookup = frameProcessor .closeLookup ();
507- eventSnapshot .addWatchResult (new WatchResult ("return" , variableIds .get (0 ), WatchResult .WATCH ));
507+ eventSnapshot .addWatchResult (new WatchResult ("return" , variableIds .get (0 ), WatchResult .CAPTURE ));
508508 eventSnapshot .mergeVariables (watchLookup );
509509 }
510510
511511 final List <VariableID > variableIds = frameProcessor .processVars (Collections .singletonMap ("runtime" , durationNs ));
512512 final Map <String , Variable > watchLookup = frameProcessor .closeLookup ();
513- eventSnapshot .addWatchResult (new WatchResult ("runtime" , variableIds .get (0 ), WatchResult .WATCH ));
513+ eventSnapshot .addWatchResult (new WatchResult ("runtime" , variableIds .get (0 ), WatchResult .CAPTURE ));
514514 eventSnapshot .mergeVariables (watchLookup );
515515 }
516516 }
0 commit comments