mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:07:34 +00:00
LibJS: Convert to_i16() to ThrowCompletionOr
This commit is contained in:
parent
cc94bba5c0
commit
627b1205ce
3 changed files with 4 additions and 4 deletions
|
@ -171,7 +171,7 @@ static ByteBuffer numeric_to_raw_bytes(GlobalObject& global_object, Value value,
|
|||
if constexpr (sizeof(UnderlyingBufferDataType) == 4)
|
||||
int_value = MUST(value.to_i32(global_object));
|
||||
else if constexpr (sizeof(UnderlyingBufferDataType) == 2)
|
||||
int_value = value.to_i16(global_object);
|
||||
int_value = MUST(value.to_i16(global_object));
|
||||
else
|
||||
int_value = value.to_i8(global_object);
|
||||
} else {
|
||||
|
|
|
@ -607,9 +607,9 @@ ThrowCompletionOr<u32> Value::to_u32(GlobalObject& global_object) const
|
|||
}
|
||||
|
||||
// 7.1.8 ToInt16 ( argument ), https://tc39.es/ecma262/#sec-toint16
|
||||
i16 Value::to_i16(GlobalObject& global_object) const
|
||||
ThrowCompletionOr<i16> Value::to_i16(GlobalObject& global_object) const
|
||||
{
|
||||
double value = TRY_OR_DISCARD(to_number(global_object)).as_double();
|
||||
double value = TRY(to_number(global_object)).as_double();
|
||||
if (!isfinite(value) || value == 0)
|
||||
return 0;
|
||||
auto abs = fabs(value);
|
||||
|
|
|
@ -317,7 +317,7 @@ public:
|
|||
ThrowCompletionOr<StringOrSymbol> to_property_key(GlobalObject&) const;
|
||||
ThrowCompletionOr<i32> to_i32(GlobalObject& global_object) const;
|
||||
ThrowCompletionOr<u32> to_u32(GlobalObject&) const;
|
||||
i16 to_i16(GlobalObject&) const;
|
||||
ThrowCompletionOr<i16> to_i16(GlobalObject&) const;
|
||||
u16 to_u16(GlobalObject&) const;
|
||||
i8 to_i8(GlobalObject&) const;
|
||||
u8 to_u8(GlobalObject&) const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue