refactor: Edit type name for consistency

This commit is contained in:
Lucàs
2024-07-03 11:11:24 +02:00
parent 9d3fa71e34
commit 072e062925
5 changed files with 164 additions and 107 deletions
+6 -6
View File
@@ -1,12 +1,12 @@
(* lib/ast/syntax.ml *)
type _type =
| Type_Integer
| Type_Float
| Type_Character
| Type_String
| Type_Boolean
| Type_Void
| IntegerType
| FloatType
| CharacterType
| StringType
| BooleanType
| VoidType
type literal =
| Integer of int