We should probably support precise types for heterogeneous dictionaries used like structures, such as {'name': 'Mary', 'age': 5}. Potential example:
person= {'name': 'Mary', 'age': 5}
person['name'] +''# okperson['age'] +1# okperson['x'] # error: no key xThis is just a placeholder issue for now and doesn't actually propose how to implement this.
We should probably support precise types for heterogeneous dictionaries used like structures, such as
{'name': 'Mary', 'age': 5}. Potential example:This is just a placeholder issue for now and doesn't actually propose how to implement this.