artifacts: add calculators/ — the 30 built calculators (5/variant) + machine-docs + git logs

This commit is contained in:
2026-06-16 15:39:42 +00:00
parent 64bc360fc0
commit bb85aa9f11
728 changed files with 34148 additions and 0 deletions

View File

@ -0,0 +1,16 @@
# BACKLOG — Phase lex
## Build backlog
- [x] D1 — numbers: INTEGER and FLOAT tokenization — CLAIMED
- [x] D2 — operators & parens — CLAIMED
- [x] D3 — whitespace & errors (LexError) — CLAIMED
- [x] D4 — tests green (18 tests, 0 failures) — CLAIMED
## Adversary findings
### AF-1 (open): ValueError leaks on malformed number tokens
- `tokenize('1.2.3')``ValueError` (not `LexError`)
- `tokenize('.')``ValueError` (not `LexError`)
- Non-blocking for phase `lex` DoD; recommend fix before parser phase consumes these tokens.
- Repro and details in REVIEW-lex.md § AF-1.