Skip to content

Commit dcd38c7

Browse files
committed
Rename: type→kind
1 parent 14541b8 commit dcd38c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Runtime/src/js-value.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ export const write = (
7676
return;
7777
}
7878

79-
const writeRef = (type: Kind) => {
80-
memory.writeUint32(kind_ptr, exceptionBit | type);
79+
const writeRef = (kind: Kind) => {
80+
memory.writeUint32(kind_ptr, exceptionBit | kind);
8181
memory.writeUint32(payload1_ptr, memory.retain(value));
8282
};
8383

0 commit comments

Comments
 (0)