Open
Description
Dictionary new
at: 1 put: 2;
asJsonString --> '{1:2}'
What would be the expected behavior?
'{"1":2}'
⭐- raise an error: invalid key for json
What in this case?
Dictionary new
at: 1 put: 2;
at: '1' put: '2';
asJsonString
'{"1":2}'
'{"1":"2"}'
⭐- raise an error: duplicate keys
My tendency would be the variants with a star ...