mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 14:28:39 +09:00
Issue #1756 - Initial wrapped implementation in C++
This commit is contained in:
parent
618fa768c8
commit
5df0028108
10 changed files with 760 additions and 27 deletions
|
|
@ -4684,6 +4684,11 @@ NewGlobal(JSContext* cx, unsigned argc, Value* vp)
|
|||
if (v.isBoolean())
|
||||
creationOptions.setCloneSingletons(v.toBoolean());
|
||||
|
||||
if (!JS_GetProperty(cx, opts, "experimentalNumberFormatFormatToPartsEnabled", &v))
|
||||
return false;
|
||||
if (v.isBoolean())
|
||||
creationOptions.setExperimentalNumberFormatFormatToPartsEnabled(v.toBoolean());
|
||||
|
||||
if (!JS_GetProperty(cx, opts, "sameZoneAs", &v))
|
||||
return false;
|
||||
if (v.isObject())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue