We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6e58c0 commit 3ac3ae8Copy full SHA for 3ac3ae8
Sources/WasmKit/Execution/Debugging.swift
@@ -10,12 +10,15 @@ package struct DebuggerExecution: ~Copyable {
10
self.execution = Execution(store: StoreRef(store), stackEnd: valueStack.advanced(by: limit))
11
}
12
13
+ package func toggleBreakpoint() {
14
+
15
+ }
16
17
package func captureBacktrace() -> Backtrace {
- return Execution.captureBacktrace(sp: self.valueStack, store: self.store)
18
+ return Execution.captureBacktrace(sp: self.valueStack, store: self.store)
19
20
21
deinit {
22
valueStack.deallocate()
23
24
-
0 commit comments