No description
Find a file
enzotar 6368b798cf feat: v2 module system — import/export with multi-file compilation
Syntax:
  import { Counter, shared_count } from "./shared"
  export let shared_count = 0
  export component Counter = ...

Implementation:
- Lexer: Import, Export keywords
- AST: ImportDecl(names, source), Export(name, inner_decl)
- Parser: parse_import_decl, parse_export_decl
- CLI: resolve_imports() — recursive file resolution, dedup, inline

Resolves relative paths, adds .ds extension, handles transitive imports.
110 tests, 0 failures.
2026-02-25 20:36:18 -08:00
compiler feat: v2 module system — import/export with multi-file compilation 2026-02-25 20:36:18 -08:00
engine feat: production hardening — relay v1.0.0, receiver protocol completeness 2026-02-25 18:30:40 -08:00
examples feat: v2 module system — import/export with multi-file compilation 2026-02-25 20:36:18 -08:00
.gitignore feat: DreamStack compiler foundation — Phase 0/1 2026-02-25 00:03:06 -08:00
BITSTREAM_INTEGRATION.md feat(examples): add streaming-physics.ds, mark all roadmap items complete 2026-02-25 14:53:12 -08:00
Cargo.toml feat(wasm): add ds-stream-wasm crate — browser codec via WebAssembly 2026-02-25 14:45:51 -08:00
DREAMSTACK.md docs: add compiler-native streaming syntax to language reference 2026-02-25 14:37:16 -08:00
IMPLEMENTATION_PLAN.md feat: physics language integration — scene container with Rapier2D WASM 2026-02-25 10:58:43 -08:00
USE_CASES.md docs: add USE_CASES.md — vision, revenue paths, and demo roadmap 2026-02-25 18:58:12 -08:00