Bridge canonicalize: add ArrayBox.len / MapBox.len diff tests; Stage‑B helpers: require v0 header; MapBox.get: add stable tag prefix [map/missing]; new core smokes (string lastIndexOf -1, map delete missing)

This commit is contained in:
nyash-codex
2025-11-02 11:15:29 +09:00
parent 99f15a2890
commit 96d3489c3e
4 changed files with 91 additions and 3 deletions

View File

@ -154,7 +154,7 @@ impl MapBox {
}
value.clone_box()
}
None => Box::new(StringBox::new(&format!("Key not found: {}", key_str))),
None => Box::new(StringBox::new(&format!("[map/missing] Key not found: {}", key_str))),
}
}