Lines Matching defs:mxsd
551 // 9. Let mxsd be ? Get(options, "maximumSignificantDigits").
553 JSHandle<JSTaggedValue> mxsd = JSTaggedValue::GetProperty(thread, options, mxsdKey).GetValue();
557 // 11. If mnsd is not undefined or mxsd is not undefined, then
558 if (!mnsd->IsUndefined() || !mxsd->IsUndefined()) {
565 // c. Let mxsd be ? DefaultNumberOption(mxsd, mnsd, 21, 21).
566 mxsd = JSHandle<JSTaggedValue>(thread,
567 JSTaggedValue(JSLocale::DefaultNumberOption(thread, mxsd, mnsd->GetInt(), MAX_DIGITS, MAX_DIGITS)));
571 // e. Set intlObj.[[MaximumSignificantDigits]] to mxsd.
572 intlObj->SetMaximumSignificantDigits(thread, mxsd);