UnionCompilerDesign / compiler_core

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

Semantic Analysis - Statements 🝙 #113

Open CalebLItalien opened 1 month ago

CalebLItalien commented 1 month ago

Details

Implement the immutable stage of doing semantic analysis of statements. This includes do while, while, for, and switch. This includes binary expressions, initializations, match statements, unary expressions, return statements, and the use of break and continue.

Issue Type

Requirements

Notes

106 is a kind-of a precursor to this issue, though you could do it prior.