mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-18 09:21:35 +00:00
CString/CArray was an illusion; Update and test tsconfig files
This commit is contained in:
9
std/portable/heap.js
Normal file
9
std/portable/heap.js
Normal file
@ -0,0 +1,9 @@
|
||||
var globalScope = typeof window !== "undefined" && window || typeof global !== "undefined" && global || self;
|
||||
|
||||
globalScope["Heap"] = {
|
||||
allocate: function() { throw new Error("not implemented"); },
|
||||
dispose: function() { throw new Error("not implemented"); },
|
||||
used: 0,
|
||||
free: 0,
|
||||
size: 0
|
||||
};
|
Reference in New Issue
Block a user