[passes] pass to check the typing tags of the program / expressions

This commit is contained in:
Arnaud DABY-SEESARAM
2022-12-15 18:33:04 +01:00
parent db5c584435
commit 8582337774
8 changed files with 286 additions and 205 deletions

View File

@@ -1,4 +1,7 @@
node diagonal_int (i: int) returns (o1, o2 : int);
var y: int;
let
(o1, o2) = (i, i);
o2 = y;
y = i;
o1 = i;
tel