17 lines
408 B
TypeScript
Raw Normal View History

2019-03-28 11:07:47 +01:00
import { E_NOTIMPLEMENTED } from "./util/error";
export namespace table {
2019-03-14 04:33:58 +01:00
export function copy(dst: u32, src: u32, n: u32): void {
2019-03-28 11:07:47 +01:00
throw new Error(E_NOTIMPLEMENTED);
2019-03-14 04:33:58 +01:00
}
2019-03-14 04:33:58 +01:00
export function init(elementIndex: u32, srcOffset: u32, dstOffset: u32, n: u32): void {
2019-03-28 11:07:47 +01:00
throw new Error(E_NOTIMPLEMENTED);
2019-03-14 04:33:58 +01:00
}
2019-03-14 04:33:58 +01:00
export function drop(elementIndex: u32): void {
2019-03-28 11:07:47 +01:00
throw new Error(E_NOTIMPLEMENTED);
2019-03-14 04:33:58 +01:00
}
}