mirror of
https://github.com/LucasVbr/croissant.git
synced 2026-05-13 17:12:10 +00:00
feat: Implement eval methods for expressions
This commit is contained in:
+9
-7
@@ -1,15 +1,17 @@
|
||||
type types =
|
||||
type t =
|
||||
| IntegerType
|
||||
| FloatType
|
||||
| CharacterType
|
||||
| StringType
|
||||
| BooleanType
|
||||
| StringType
|
||||
| CharacterType
|
||||
| NullType
|
||||
| VoidType
|
||||
|
||||
let pp_types = function
|
||||
let string_of_t = function
|
||||
| IntegerType -> "IntegerType"
|
||||
| FloatType -> "FloatType"
|
||||
| CharacterType -> "CharacterType"
|
||||
| StringType -> "StringType"
|
||||
| BooleanType -> "BooleanType"
|
||||
| VoidType -> "VoidType"
|
||||
| StringType -> "StringType"
|
||||
| CharacterType -> "CharacterType"
|
||||
| NullType -> "NullType"
|
||||
| VoidType -> "VoidType"
|
||||
Reference in New Issue
Block a user