Shane F. Carr
Shane F. Carr
Some of these bots are friendly enough to send PRs fixing the vulnerabilities. I would prefer if the bot reporting these alerts would also just send PRs fixing them. I...
Discuss with: - @sffc - @eggrobin - @echeran
@echeran, @eggrobin, can you contribute items to the bikeshed? - @eggrobin - Maybe "round-trip", based on existing usage in C# documentation: https://learn.microsoft.com/en-us/dotnet/standard/base-types/standard-numeric-format-strings#round-trip-format-specifier-r. I need to look at more sources.
For context, the whole enum is ``` #[non_exhaustive] pub enum FloatPrecision { Integer, Magnitude(i16), SignificantDigits(i16), Floating, } ``` The Google C++ `double_conversion` library calls it `ToShortest`: https://github.com/google/double-conversion/blob/15b7e306433dd899585f92758f7776a37a9c25ff/double-conversion/double-to-string.h#L240C8-L240C18 So in an...
Do we have consensus on `FloatPrecision::Shortest`? - [ ] @eggrobin - [ ] @echeran - [x] @jedel1043
Putting this on the Version 1 backlog. We still need help on this.
- @eggrobin - "Shortest" is not very short; it will be quite long most of the time. What is special about it is that it round-trips. - @younies - As...
Here's my current thinking. There are three levels of locale support in a data provider: 1. **Stored Locales:** Given a particular key, these are the locales that have an exact...
I propose considering what I proposed above as the course of action, and removing this from the 1.0 critical path.
Based on feedback from @anba on https://github.com/tc39/ecma402/issues/830, one approach which would solve this problem fairly cleanly would be for datagen to record which locales were used when generating data, and...