TC & ASC Implemented. yyerrors updated.

This commit is contained in:
Scarlett
2025-04-25 22:14:31 -04:00
parent 55116599f8
commit 3ea41f40fa
7 changed files with 148 additions and 46 deletions

View File

@ -8,12 +8,12 @@ entry (arg) := {
x := 3 + 2 * 8;
x := 3 - 2 / 8;
x := a * 2 % 8;
x := a * 2 % 8;s
b2 := 3 * 2 % 8;
x := 3 % 2 * 8;
x := 3 + arr - 8;
x := r.x;
x := a.x;
x := r.x;
x := a.x;
return 0;
}