mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-19 01:41:30 +00:00
layout rtti with fixed ids for buffers and strings
This commit is contained in:
11
std/assembly/shared/target.ts
Normal file
11
std/assembly/shared/target.ts
Normal file
@ -0,0 +1,11 @@
|
||||
// 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
|
||||
}
|
Reference in New Issue
Block a user