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