Branch: refs/heads/main
Home: https://github.com/WebKit/WebKit
Commit: f33b9fcbc7d0829e8bfb9ed3cc71840acc5397ca
https://github.com/WebKit/WebKit/commit/f33b9fcbc7d0829e8bfb9ed3cc71840acc5397ca
Author: Yijia Huang <[email protected]>
Date: 2025-11-10 (Mon, 10 Nov 2025)
Changed paths:
M Source/JavaScriptCore/wasm/debugger/WasmBreakpointManager.cpp
M Source/JavaScriptCore/wasm/debugger/WasmBreakpointManager.h
M Source/JavaScriptCore/wasm/debugger/WasmDebugServer.cpp
M Source/JavaScriptCore/wasm/debugger/WasmDebugServer.h
M Source/JavaScriptCore/wasm/debugger/WasmExecutionHandler.cpp
M Source/JavaScriptCore/wasm/debugger/WasmExecutionHandler.h
M Source/JavaScriptCore/wasm/debugger/WasmMemoryHandler.cpp
M Source/JavaScriptCore/wasm/debugger/WasmQueryHandler.cpp
Log Message:
-----------
[JSC][Wasm][Debugger] Rename debugger variables for clarity: tmp -> oneTime,
instance -> module
rdar://164454352
https://bugs.webkit.org/show_bug.cgi?id=302310
Reviewed by Yusuke Suzuki.
Refactor WASM debugger code to improve naming clarity:
- Rename m_tmpBreakpoints to m_oneTimeBreakpoints and clearAllTmpBreakpoints()
to clearAllOneTimeBreakpoints() in BreakpointManager to better describe their
purpose as temporary, single-use breakpoints used for stepping operations
- Rename m_instanceManager to m_moduleManager in DebugServer and dependent
classes to more accurately reflect that this manager handles both modules
and instances, not just instances
No functional changes, just improved code readability.
Canonical link: https://commits.webkit.org/302831@main
To unsubscribe from these emails, change your notification settings at
https://github.com/WebKit/WebKit/settings/notifications