reorganized tests and removed old compilation artifacts

This commit is contained in:
Francesco Cozzuto
2023-01-23 13:45:45 +01:00
parent 76bd70d833
commit 31d0c100c1
21 changed files with 2 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
@type [runtime]
@bytecode
PUSHFLS;
PUSHVAR "print";
CALL 1, 1;
POP 1;
EXIT;
@output [false]
+12
View File
@@ -0,0 +1,12 @@
@type [runtime]
@bytecode
PUSHFLT 8.5;
PUSHVAR "print";
CALL 1, 1;
POP 1;
EXIT;
@output [8.50]
+12
View File
@@ -0,0 +1,12 @@
@type [runtime]
@bytecode
PUSHINT 7;
PUSHVAR "print";
CALL 1, 1;
POP 1;
EXIT;
@output [7]
+12
View File
@@ -0,0 +1,12 @@
@type [runtime]
@bytecode
PUSHLST 0;
PUSHVAR "print";
CALL 1, 1;
POP 1;
EXIT;
@output {[]}
+10
View File
@@ -0,0 +1,10 @@
@type [runtime]
@bytecode
PUSHNNE;
PUSHVAR "print";
CALL 1, 1;
POP 1;
EXIT;
@output [none]
+12
View File
@@ -0,0 +1,12 @@
@type [runtime]
@bytecode
PUSHNNETYP;
PUSHVAR "print";
CALL 1, 1;
POP 1;
EXIT;
@output [None]
+12
View File
@@ -0,0 +1,12 @@
@type [runtime]
@bytecode
PUSHTRU;
PUSHVAR "print";
CALL 1, 1;
POP 1;
EXIT;
@output [true]
+13
View File
@@ -0,0 +1,13 @@
@type [runtime]
@bytecode
PUSHTRU;
PUSHTYP;
PUSHVAR "print";
CALL 1, 1;
POP 2;
EXIT;
@output [bool]