mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-28 16:32:15 +00:00
12 lines
298 B
TypeScript
12 lines
298 B
TypeScript
|
// This file is shared with the compiler and must remain portable
|
||
|
|
||
|
/** Compilation target. */
|
||
|
export enum Target {
|
||
|
/** WebAssembly with 32-bit pointers. */
|
||
|
WASM32,
|
||
|
/** WebAssembly with 64-bit pointers. Experimental and not supported by any runtime yet. */
|
||
|
WASM64,
|
||
|
/** Portable. */
|
||
|
JS
|
||
|
}
|