aboutsummaryrefslogtreecommitdiff
path: root/compiler/src/ast/tests.rs
Commit message (Collapse)AuthorAgeFilesLines
* Implement If expression supportdev-easyTolmachev Igor2026-05-221-0/+311
| | | | I forgor
* Replace generic list AST with typed expression treeTolmachev Igor2026-05-111-94/+1204
| | | | | Each form (fn, let, for, set, do, call) now has its own variant with named fields instead of being a plain list.
* Remove Float from parserTolmachev Igor2026-05-101-94/+2
| | | | Dropped to make the language simpler.
* Remove Quote from parserTolmachev Igor2026-05-101-135/+1
| | | | Dropped to make the language simpler.
* Make project structure more consistentdevTolmachev Igor2026-05-091-10/+6
|
* Implement fmt::Display for ErrorTolmachev Igor2026-05-091-4/+4
| | | | | Replaces the todo!() stub. InvalidFloatLiteral and InvalidIntegerLiteral now also take the original string.
* Add parser testsTolmachev Igor2026-05-091-0/+747