mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-05-01 09:52:19 +00:00
* Rename memory instructions as proposed by the bulk-memory-operations spec. * Rename memory manager functions to memory.* as well * Remove automatic inlining of constant globals (Binaryen does this now) * Improve 'const' enum compatibility * Improve module-level export generation * Enable the inline decorator for constant variables * Add ERROR, WARNING and INFO macros that emit a user-defined diagnostic * Reintroduce builtin decorator so these can appear anywhere in stdlib again * Inline isNaN and isFinite by default * Make an interface around gc.* similar to memory.* * Emit an error when trying to inline a mutable variable * Slim down CI stages * Add a more convenient tracing utility for debugging * Implement some prequesites for an eventual bundled GC
11 lines
285 B
TypeScript
11 lines
285 B
TypeScript
trace("zero_implicit");
|
|
trace("zero_explicit", 0);
|
|
trace("one_int", 1, 1);
|
|
trace("two_int", 2, 1, 2);
|
|
trace("three_int", 3, 1, 2, 3);
|
|
trace("four_int", 4, 1, 2, 3, 4);
|
|
trace("five_int", 5, 1, 2, 3, 4, 5);
|
|
trace("five_dbl", 5, 1.1, 2.2, 3.3, 4.4, 5.5);
|
|
|
|
export function main(): void {}
|