mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-28 00:12:15 +00:00
10 lines
260 B
TypeScript
10 lines
260 B
TypeScript
/** Indicates module capabilities. */
|
|
export const enum Capability {
|
|
/** No specific capabilities. */
|
|
NONE = 0,
|
|
/** Uses WebAssembly with 64-bit pointers. */
|
|
WASM64 = 1 << 0,
|
|
/** Garbage collector is present (full runtime header). */
|
|
GC = 1 << 1
|
|
}
|