Bug 578114 - [Evaluation] Add support for evaluating block statements
Summary: [Evaluation] Add support for evaluating block statements
Status: NEW
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Debug (show other bugs)
Version: 4.23   Edit
Hardware: All All
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-Debug-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-01-08 06:14 EST by Gayan Perera CLA
Modified: 2022-01-08 14:05 EST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Gayan Perera CLA 2022-01-08 06:14:57 EST
Take the code
java.util.concurrent.ForkJoinPool.commonPool().execute(new Runnable() {
	public void run() {
		System.out.println("ran");
	}
});



This block of statements should be able to be evaluated or executed at a trace breakpoint with a false condition.