mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-21 18:51:43 +00:00
take a step back
This commit is contained in:
@ -1,16 +1,14 @@
|
||||
export namespace table {
|
||||
|
||||
// export function copy(dst: u32, src: u32, n: u32): void {
|
||||
// __table_copy(dst, src, n);
|
||||
// }
|
||||
export function copy(dst: u32, src: u32, n: u32): void {
|
||||
ERROR("not implemented: table.copy");
|
||||
}
|
||||
|
||||
// Passive elements
|
||||
export function init(elementIndex: u32, srcOffset: u32, dstOffset: u32, n: u32): void {
|
||||
ERROR("not implemented: table.init");
|
||||
}
|
||||
|
||||
// export function init(elementIndex: u32, srcOffset: u32, dstOffset: u32, n: u32): void {
|
||||
// __table_init(elementIndex, srcOffset, dstOffset, n);
|
||||
// }
|
||||
|
||||
// export function drop(elementIndex: u32): void {
|
||||
// __table_drop(elementIndex);
|
||||
// }
|
||||
export function drop(elementIndex: u32): void {
|
||||
ERROR("not implemented: table.drop");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user