E12003 Map Errors
map-key-not-found
key not found in map
When this occurs
Accessing non-existent key in map
Example error message
error[E12003]:
key 'foo' not found in map
How to fix
Check if the key exists using `maps.has(m, key)` before accessing.