grammar,compiler: Add Support For Fixed-Width Integers
Continuous Integration / Grammar Tests (push) Successful in 4m13s
Continuous Integration / Library Format Tests (push) Successful in 5m17s
Continuous Integration / Library Tests (push) Failing after 8m34s
Continuous Integration / Cli Tests (push) Failing after 4m40s

Distinguishing between signed and unsigned fixed-width integer
types must still be done.

Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
This commit is contained in:
Will Hawkins
2026-05-18 06:52:21 -04:00
parent cbebcae20a
commit a7d8fd1304
16 changed files with 328 additions and 48 deletions
+6 -2
View File
@@ -38,7 +38,9 @@ int fun() {
(function_declaration
(typeRef
(baseType
(int)
(int_type
(int)
)
)
)
(identifier)
@@ -382,7 +384,9 @@ parser simple() {
(variableDeclaration
(typeRef
(baseType
(int)
(int_type
(int)
)
)
)
(identifier)