mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 15:32:16 +00:00
17 lines
408 B
TypeScript
17 lines
408 B
TypeScript
import { E_NOTIMPLEMENTED } from "./util/error";
|
|
|
|
export namespace table {
|
|
|
|
export function copy(dst: u32, src: u32, n: u32): void {
|
|
throw new Error(E_NOTIMPLEMENTED);
|
|
}
|
|
|
|
export function init(elementIndex: u32, srcOffset: u32, dstOffset: u32, n: u32): void {
|
|
throw new Error(E_NOTIMPLEMENTED);
|
|
}
|
|
|
|
export function drop(elementIndex: u32): void {
|
|
throw new Error(E_NOTIMPLEMENTED);
|
|
}
|
|
}
|