mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-20 10:16:37 +00:00
Asterisk imports parsing; Pussyfooting around stdlib
This commit is contained in:
@ -27,5 +27,5 @@ Object.defineProperties(globalScope["Heap"] = {
|
||||
size: { get: function get_size() { return HEAP.length; } }
|
||||
});
|
||||
|
||||
globalScope["store"] = function store(ptr, val) { binaryen.HEAPU8[ptr] = val; };
|
||||
globalScope["load"] = function load(ptr) { return binaryen.HEAPU8[ptr]; };
|
||||
globalScope["store"] = function store(ptr, val) { HEAP[ptr] = val; };
|
||||
globalScope["load"] = function load(ptr) { return HEAP[ptr]; };
|
||||
|
Reference in New Issue
Block a user