Skip to content

Commit 3ac3ae8

Browse files
committed
Fix formatting
1 parent f6e58c0 commit 3ac3ae8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Sources/WasmKit/Execution/Debugging.swift

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,15 @@ package struct DebuggerExecution: ~Copyable {
1010
self.execution = Execution(store: StoreRef(store), stackEnd: valueStack.advanced(by: limit))
1111
}
1212

13+
package func toggleBreakpoint() {
14+
15+
}
16+
1317
package func captureBacktrace() -> Backtrace {
14-
return Execution.captureBacktrace(sp: self.valueStack, store: self.store)
18+
return Execution.captureBacktrace(sp: self.valueStack, store: self.store)
1519
}
1620

1721
deinit {
1822
valueStack.deallocate()
1923
}
2024
}
21-

0 commit comments

Comments
 (0)