Browse Source

Implement BigInt.prototype[ @@toStringTag ] (#1265)

pull/1270/head
Nick Little 4 years ago committed by GitHub
parent
commit
e187489ab8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      boa/src/builtins/bigint/mod.rs

8
boa/src/builtins/bigint/mod.rs

@ -17,6 +17,7 @@ use crate::{
gc::{empty_trace, Finalize, Trace},
object::{ConstructorBuilder, ObjectData},
property::Attribute,
symbol::WellKnownSymbols,
value::{RcBigInt, Value},
BoaProfiler, Context, Result,
};
@ -50,6 +51,8 @@ impl BuiltIn for BigInt {
fn init(context: &mut Context) -> (&'static str, Value, Attribute) {
let _timer = BoaProfiler::global().start_event(Self::NAME, "init");
let to_string_tag = WellKnownSymbols::to_string_tag();
let bigint_object = ConstructorBuilder::with_standard_object(
context,
Self::constructor,
@ -63,6 +66,11 @@ impl BuiltIn for BigInt {
.static_method(Self::as_uint_n, "asUintN", 2)
.callable(true)
.constructable(false)
.property(
to_string_tag,
"BigInt",
Attribute::READONLY | Attribute::NON_ENUMERABLE | Attribute::CONFIGURABLE,
)
.build();
(Self::NAME, bigint_object.into(), Self::attribute())

Loading…
Cancel
Save