parser: implement long literal and handle overflow

This commit is contained in:
2023-09-12 00:25:13 -04:00
parent 7aa9d95221
commit 1b363dcf56
12 changed files with 55 additions and 2 deletions

View File

@ -4,5 +4,6 @@ enum class AstPrimitive(val id: kotlin.String) {
Boolean("Boolean"),
String("String"),
Int("Int"),
Long("Long"),
Double("Double")
}