You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of the object uses a std::map for storing the key/values but according to ecma 404 there can be many entries with the same key.
There should be at least 3 options:
All but the last key is ignored (current behavior)
Multiple equal keys are an error
All keys are stored in a multimap.
The text was updated successfully, but these errors were encountered:
Reading multikeys are not important, in the new "opinionated json parser", and ignored and error are already supported, so I'm closing this issue since it's complete.
The current implementation of the object uses a std::map for storing the key/values but according to ecma 404 there can be many entries with the same key.
There should be at least 3 options:
The text was updated successfully, but these errors were encountered: