mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
Issue #2026 - Part 3a - Add support for BigInt in devtools. (Server side) https://bugzilla.mozilla.org/show_bug.cgi?id=1527867
This commit is contained in:
parent
3ce9cf4deb
commit
e861cd3b3a
2 changed files with 29 additions and 19 deletions
|
|
@ -2159,6 +2159,12 @@ function createValueGrip(value, pool, makeObjectGrip) {
|
|||
}
|
||||
return value;
|
||||
|
||||
case "bigint":
|
||||
return {
|
||||
type: "BigInt",
|
||||
text: value.toString(),
|
||||
};
|
||||
|
||||
case "undefined":
|
||||
return { type: "undefined" };
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue