UnionCompilerDesign / compiler_core

The core of the compiler, runtime, and builder setup.
MIT License
1 stars 1 forks source link

Data Type - C99 Update #119

Closed kjwelch closed 3 weeks ago

kjwelch commented 4 weeks ago

This concludes issue #99

kjwelch commented 3 weeks ago

Most recent push fixes the MINUS and NEGATIVE issue by implementing DASH ---> This still does not fix the parsing of unary expressions within binary expressions (which I am working on implementing now, the test at the very bottom of parser_tests is being used for this and the test prior to it tests unary expression parsing). Also, this adds 3 DataType tokens that were missed in the previous push.

CalebLItalien commented 3 weeks ago

Sounds good! Comment on this issue when you feel its ready to be reviewed again. :)

kjwelch commented 3 weeks ago

This issue is good for review - it contains both Token::DASH and the C99 update for DataTypes.