mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-23 19:51:47 +00:00
CString/CArray was an illusion; Update and test tsconfig files
This commit is contained in:
18
std/portable/heap.d.ts
vendored
Normal file
18
std/portable/heap.d.ts
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
/** A static class representing the heap. */
|
||||
declare class Heap {
|
||||
|
||||
/** Allocates a chunk of memory and returns a pointer to it. */
|
||||
static allocate(size: usize): usize;
|
||||
|
||||
/** Disposes a chunk of memory by its pointer. */
|
||||
static dispose(ptr: usize): void;
|
||||
|
||||
/** Gets the amount of used heap space, in bytes. */
|
||||
static readonly used: usize;
|
||||
|
||||
/** Gets the amount of free heap space, in bytes. */
|
||||
static readonly free: usize;
|
||||
|
||||
/** Gets the size of the heap, in bytes. */
|
||||
static readonly size: usize;
|
||||
}
|
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
|
||||
};
|
9
std/portable/tsconfig.json
Normal file
9
std/portable/tsconfig.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"extends": "../../portable-assembly.json",
|
||||
"compilerOptions": {
|
||||
"diagnostics": true
|
||||
},
|
||||
"include": [
|
||||
"./**/*.ts"
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user