mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-24 04:01:46 +00:00
Add a more convenient tracing utility for debugging; Fix basic GC test
This commit is contained in:
10
tests/compiler/std/trace.ts
Normal file
10
tests/compiler/std/trace.ts
Normal file
@ -0,0 +1,10 @@
|
||||
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 {}
|
Reference in New Issue
Block a user