mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibWeb: Add WebIDL::Double type
This commit is contained in:
parent
9515290fde
commit
6189d1ac9d
Notes:
github-actions[bot]
2024-10-08 17:03:30 +00:00
Author: https://github.com/gmta Commit: https://github.com/LadybirdBrowser/ladybird/commit/6189d1ac9d7 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1681
1 changed files with 5 additions and 0 deletions
|
@ -42,4 +42,9 @@ using LongLong = i64;
|
|||
// The unsigned long long type is an unsigned integer type that has values in the range [0, 18446744073709551615].
|
||||
using UnsignedLongLong = u64;
|
||||
|
||||
// https://webidl.spec.whatwg.org/#idl-double
|
||||
// The double type is a floating point numeric type that corresponds to the set of finite
|
||||
// double-precision 64-bit IEEE 754 floating point numbers. [IEEE-754]
|
||||
using Double = f64;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue