mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 16:16:43 +00:00
LibJS: Convert BigIntConstructor functions to ThrowCompletionOr
This commit is contained in:
parent
ac856cb965
commit
4128f95903
Notes:
sideshowbarker
2024-07-18 01:48:04 +09:00
Author: https://github.com/IdanHo
Commit: 4128f95903
Pull-request: https://github.com/SerenityOS/serenity/pull/10675
Reviewed-by: https://github.com/linusg ✅
2 changed files with 6 additions and 6 deletions
|
@ -29,8 +29,8 @@ void BigIntConstructor::initialize(GlobalObject& global_object)
|
|||
|
||||
// TODO: Implement these functions below and uncomment this.
|
||||
// u8 attr = Attribute::Writable | Attribute::Configurable;
|
||||
// define_old_native_function(vm.names.asIntN, as_int_n, 2, attr);
|
||||
// define_old_native_function(vm.names.asUintN, as_uint_n, 2, attr);
|
||||
// define_native_function(vm.names.asIntN, as_int_n, 2, attr);
|
||||
// define_native_function(vm.names.asUintN, as_uint_n, 2, attr);
|
||||
|
||||
define_direct_property(vm.names.length, Value(1), Attribute::Configurable);
|
||||
}
|
||||
|
@ -65,13 +65,13 @@ ThrowCompletionOr<Object*> BigIntConstructor::construct(FunctionObject&)
|
|||
}
|
||||
|
||||
// 21.2.2.1 BigInt.asIntN ( bits, bigint ), https://tc39.es/ecma262/#sec-bigint.asintn
|
||||
JS_DEFINE_OLD_NATIVE_FUNCTION(BigIntConstructor::as_int_n)
|
||||
JS_DEFINE_NATIVE_FUNCTION(BigIntConstructor::as_int_n)
|
||||
{
|
||||
TODO();
|
||||
}
|
||||
|
||||
// 21.2.2.2 BigInt.asUintN ( bits, bigint ), https://tc39.es/ecma262/#sec-bigint.asuintn
|
||||
JS_DEFINE_OLD_NATIVE_FUNCTION(BigIntConstructor::as_uint_n)
|
||||
JS_DEFINE_NATIVE_FUNCTION(BigIntConstructor::as_uint_n)
|
||||
{
|
||||
TODO();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue