diff --git a/news/4.36/images/NavigateToDeclareMenu.png b/news/4.36/images/NavigateToDeclareMenu.png new file mode 100644 index 000000000..0bf2f8d4c Binary files /dev/null and b/news/4.36/images/NavigateToDeclareMenu.png differ diff --git a/news/4.36/images/Navigation.png b/news/4.36/images/Navigation.png new file mode 100644 index 000000000..063f9b041 Binary files /dev/null and b/news/4.36/images/Navigation.png differ diff --git a/news/4.36/images/ResumeWithCondition.png b/news/4.36/images/ResumeWithCondition.png new file mode 100644 index 000000000..6c3cc1e03 Binary files /dev/null and b/news/4.36/images/ResumeWithCondition.png differ diff --git a/news/4.36/images/TriggerContinue.png b/news/4.36/images/TriggerContinue.png new file mode 100644 index 000000000..32a1dd463 Binary files /dev/null and b/news/4.36/images/TriggerContinue.png differ diff --git a/news/4.36/images/TriggerEnabled.png b/news/4.36/images/TriggerEnabled.png new file mode 100644 index 000000000..c268969da Binary files /dev/null and b/news/4.36/images/TriggerEnabled.png differ diff --git a/news/4.36/images/TriggerExecution.png b/news/4.36/images/TriggerExecution.png new file mode 100644 index 000000000..e1a7cf338 Binary files /dev/null and b/news/4.36/images/TriggerExecution.png differ diff --git a/news/4.36/images/navigate-to-variables.png b/news/4.36/images/navigate-to-variables.png deleted file mode 100644 index 1ac56cbd1..000000000 Binary files a/news/4.36/images/navigate-to-variables.png and /dev/null differ diff --git a/news/4.36/jdt.html b/news/4.36/jdt.html index 83afcee92..37559f7e8 100644 --- a/news/4.36/jdt.html +++ b/news/4.36/jdt.html @@ -2,7 +2,7 @@ - + @@ -187,10 +187,45 @@

Debug

Navigate to variable declaration Users can now navigate to a variable’s declaration directly from the Variables view during a debug session, making it easier to trace variables—especially in methods with numerous local variables. +

+ Choose Navigate to Declaration from context menu of variables

- Original + Navigation_menu +


+

+ Now editor will jump and highlight its declaration +

+ Navigation_done


+ + + + Auto-Resuming Trigger Points + + Trigger points can now be configured to automatically resume execution when hit, allowing breakpoints after the trigger point to be activated while skipping those before it, + enabling more focused and efficient debugging workflows. +

+ On enabling a trigger point a new option will be shown its left to Continue execution on hit or not +

+ Triggerpoint Enabled +


+

+ Once Continue execution on hit is toggled, breakpoint label will update to [Resume on hit] meaning it wont suspend on hit +

+ Triggerpoint Continue +


+

+ Resume trigger also supports conditions, meaning if condition is met true it will resume the execution else it will suspend +

+ Resume-Triggerpoint with conditions +


+

+ Now when you run in debug, Trigger point wont hit, allowing you to skip previous breakpoints and hit on the actual breakpoint you need to focus.

+ For example, here Resume trigger was set on line number 7 and during debugging it hit on line number 8 by skipping all the previous breakpoints +

+ Resume-Triggerpoint execution +