Skip to content

Commit a7fac8e

Browse files
committed
Mark Sp.currentFunction as internal
1 parent 935f877 commit a7fac8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/WasmKit/Execution/Execution.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ extension Sp {
235235
// MARK: - Special slots
236236

237237
/// The current executing function.
238-
fileprivate var currentFunction: EntityHandle<WasmFunctionEntity>? {
238+
var currentFunction: EntityHandle<WasmFunctionEntity>? {
239239
get { return EntityHandle<WasmFunctionEntity>(bitPattern: UInt(self[-3].i64)) }
240240
nonmutating set { self[-3] = UInt64(UInt(bitPattern: newValue?.bitPattern ?? 0)) }
241241
}

0 commit comments

Comments
 (0)