From 0c0933d1c07b39eb454b07501c66f63effe569c1 Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Tue, 10 Jun 2025 18:16:07 -0400 Subject: [PATCH] debugger: Ungate locator for JS tasks (#32495) Closes #ISSUE Release Notes: - N/A Co-authored-by: Anthony Eid --- crates/project/src/debugger/locators/node.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/project/src/debugger/locators/node.rs b/crates/project/src/debugger/locators/node.rs index 4011454c01..2b39a9d322 100644 --- a/crates/project/src/debugger/locators/node.rs +++ b/crates/project/src/debugger/locators/node.rs @@ -27,10 +27,6 @@ impl DapLocator for NodeLocator { resolved_label: &str, adapter: DebugAdapterName, ) -> Option { - // TODO(debugger) fix issues with `await` breakpoint step - if cfg!(not(debug_assertions)) { - return None; - } if adapter.0.as_ref() != "JavaScript" { return None; }