Files
agent-orchestrator-benchmark/calculators/builder-adversary-lean/run-02/machine-docs/BACKLOG-lex.md

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 (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.