mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-17 17:01:37 +00:00
external gc interface
This commit is contained in:
@ -1,14 +1,16 @@
|
||||
import { E_NOTIMPLEMENTED } from "./util/error";
|
||||
|
||||
export namespace table {
|
||||
|
||||
export function copy(dst: u32, src: u32, n: u32): void {
|
||||
ERROR("not implemented: table.copy");
|
||||
throw new Error(E_NOTIMPLEMENTED);
|
||||
}
|
||||
|
||||
export function init(elementIndex: u32, srcOffset: u32, dstOffset: u32, n: u32): void {
|
||||
ERROR("not implemented: table.init");
|
||||
throw new Error(E_NOTIMPLEMENTED);
|
||||
}
|
||||
|
||||
export function drop(elementIndex: u32): void {
|
||||
ERROR("not implemented: table.drop");
|
||||
throw new Error(E_NOTIMPLEMENTED);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user