2019-03-14 04:33:58 +01:00

15 lines
367 B
TypeScript

export namespace table {
export function copy(dst: u32, src: u32, n: u32): void {
ERROR("not implemented: table.copy");
}
export function init(elementIndex: u32, srcOffset: u32, dstOffset: u32, n: u32): void {
ERROR("not implemented: table.init");
}
export function drop(elementIndex: u32): void {
ERROR("not implemented: table.drop");
}
}