Files
bux-lang/.gitignore
T
dimgigov 62a9c8b84a feat: LIR backend replaces direct HIR→C emission (v0.3.0)
- 42 LIR instructions in bootstrap/lir.nim

- HIR→LIR lowering in bootstrap/lir_lower.nim

- LIR→C emission with full struct/enum/vtable support

- All 22 examples + 5 Nim unit tests passing

- Updated README status and backend description
2026-06-06 18:55:59 +03:00

25 lines
279 B
Plaintext

# Compiled binary
buxc
buxc_lir
src/main
# Nim cache
nimcache/
# Test binaries
tests/lexer_test
tests/parser_test
tests/sema_test
tests/hir_test
tests/test_generics_parse
tests/*.exe
# Build artifacts
build/
*.o
# Temporary directories
_test_tmp_pkg/
test_pkg/
examples_pkg/