Project Status
Ubel Stratum is early and under active development. This page tracks what exists today at a language level; the CI Results page tracks the fixture suite and benchmark history behind these claims.
Phases
| Phase | Status | Covers |
|---|---|---|
| 1 | Done | Core design, memory model, lexer, arena AST, the recursive-descent/Pratt parser |
| 2 | Done | Semantic analysis: name resolution, type inference, tier enforcement, generics, the three-tier escape-boundary checker |
| 3 | Done | Tree-walking interpreter, the current execution model |
| 4 | Not started | LLVM backend, native binaries |
| 5 | Not started | Standard library, tooling, package manager |
Phase 2 being marked done covers full generics for structs and enums,
enum discriminants and payloads, arena and pool escape checking, and
generational handles through Pool<T>/Handle<T>. It does not mean
every corner of semantic analysis is finished: LOW-tier borrow checking
specifically has its syntax and structural typing in place along with a
control-flow-graph builder, but no loan or liveness enforcement yet. See
The Tier Model for the exact
line between what parses and type-checks versus what is actually
verified safe.
Recently landed
_as both a match wildcard and a parameter placeholder@deriveforPartialEq, withEq,Hash,Ord/PartialOrd, andClonefollowing- Lifetime well-formedness checking: declared lifetime names must exist,
whereclause bounds can only reference declared names, no outlives cycles, for both function signatures andedge structfields - Method dispatch through
Unique<T>/Shared<T>/SyncShared<T>ownership wrappers
Active work
- Connecting
edge struct’sis_edgemarker to the arena-escape checker, its documented purpose today has no effect on that checker - Real outlives and loan-tracking enforcement for the LOW-tier borrow checker, a substantially larger piece of work than the well-formedness checking already in place
Known gaps, tracked rather than hidden
edge structis parsed and stored on the AST but not yet consulted by the arena-escape checker, so it does not yet do what its name implies- The interpreter runs every tier on the same reference-counted values;
with arenablocks are validated by the tier checker but do not yet allocate or free real memory, that lands with the LLVM backend - No package manager, no installable compiler, no standard library beyond the built-in collection and instance methods documented in the Language Tour
Source and deeper documentation
The GitHub repository
carries the full engineering documentation this site draws from:
MEMORY_MODEL.md, PARSER_RULES.md, DIAGNOSTICS_RULES.md,
ENUM_RULES.md, GENERICS_RULES.md, DATASTRUCTURES.md, and
PARKED_IDEAS.md among others, each maintained alongside the code it
describes rather than as a separate, drifting reference.