mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-28 21:26:22 +00:00
AK: Fix userland parsing of rounded floating point numbers
Parse JSON floating point literals properly, No longer throwing a SyntaxError when the decimal portion of the number exceeds the capacity of u32. Added tests to AK/TestJSON and LibJS/builtins/JSON/JSON.parse
This commit is contained in:
parent
af75503c17
commit
23c72c6728
Notes:
sideshowbarker
2024-07-17 18:43:35 +09:00
Author: https://github.com/ben-abraham
Commit: 23c72c6728
Pull-request: https://github.com/SerenityOS/serenity/pull/12429
Reviewed-by: https://github.com/trflynn89
3 changed files with 19 additions and 8 deletions
|
@ -128,3 +128,9 @@ TEST_CASE(json_parse_empty_string)
|
|||
auto value = JsonValue::from_string("");
|
||||
EXPECT_EQ(value.value().is_null(), true);
|
||||
}
|
||||
|
||||
TEST_CASE(json_parse_long_decimals)
|
||||
{
|
||||
auto value = JsonValue::from_string("1644452550.6489999294281");
|
||||
EXPECT_EQ(value.value().as_double(), 1644452550.6489999294281);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue