File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Sources/WasmKit/Execution Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2828 }
2929
3030 extension Instance {
31- /// Return an address of WasmKit's iseq bytecode instruction that matches a given Wasm instruction address.
31+ /// Computes an address of WasmKit's iseq bytecode instruction that matches a given Wasm instruction address.
3232 /// - Parameter address: the Wasm instruction to find a mapping for.
3333 /// - Returns: A tuple with an address of found iseq instruction and the original Wasm instruction or next
3434 /// closest match if no direct match was found.
162162 iseq. pointee = oldCodeSlot
163163 }
164164
165- /// If the module instantiated by the debugger is stopped at a breakpoint, the breakpoint is disabled
165+ /// Resumes the module instantiated by the debugger stopped at a breakpoint. The breakpoint is disabled
166166 /// and execution is resumed until the next breakpoint is triggered or all remaining instructions are
167- /// executed. If the module is not stopped at a breakpoint, this function retusn immediately.
167+ /// executed. If the module is not stopped at a breakpoint, this function returns immediately.
168168 /// - Returns: `[Value]` result of `entrypointFunction` if current instance ran to completion,
169169 /// `nil` if it stopped at a breakpoint.
170170 package mutating func run( ) throws -> [ Value ] ? {
You can’t perform that action at this time.
0 commit comments