Conversation
|
This fix is not good enough because in https://tc39.es/proposal-intl-messageformat/#sec-properties-of-intl-messageformat-instances [[RequestedLocales]] is a List of String values with the canonicalized language tags of the requested locales to use for message formatting. and you now create an array and assign to a [[RequestedLocales]]. If you want to make [[RequestedLocales]] an array, you also need to change the above line |
|
Good catch, thank you! @FrankYFTang, PTAL? |
| </li> | ||
| <li> | ||
| [[RequestedLocales]] is a List of String values | ||
| [[RequestedLocales]] is an Array of String values |
There was a problem hiding this comment.
I see nowhere in ECMA402 mention "an Array of String" . In ECMA262, I find one place and it use the wording "an Array of Strings" instead of "an Array of String values"
See https://tc39.es/ecma262/#sec-json.stringify
|
This was obsoleted by #63. |
Fixes #52