mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-27 16:02:16 +00:00
15 lines
367 B
TypeScript
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");
|
|
}
|
|
}
|