mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 15:28:39 +09:00
Issue #2026 - Part 3b - Add BigInt Devtools support. (legacy frontend)
This commit is contained in:
parent
e861cd3b3a
commit
61efc86b21
2 changed files with 20 additions and 9 deletions
|
|
@ -3236,14 +3236,6 @@ VariablesView.prototype.isOverridden = function (aItem) {
|
|||
* The variable's descriptor.
|
||||
*/
|
||||
VariablesView.isPrimitive = function (aDescriptor) {
|
||||
// For accessor property descriptors, the getter and setter need to be
|
||||
// contained in 'get' and 'set' properties.
|
||||
let getter = aDescriptor.get;
|
||||
let setter = aDescriptor.set;
|
||||
if (getter || setter) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// As described in the remote debugger protocol, the value grip
|
||||
// must be contained in a 'value' property.
|
||||
let grip = aDescriptor.value;
|
||||
|
|
@ -3261,7 +3253,8 @@ VariablesView.isPrimitive = function (aDescriptor) {
|
|||
type == "NaN" ||
|
||||
type == "-0" ||
|
||||
type == "symbol" ||
|
||||
type == "longString") {
|
||||
type == "longString" ||
|
||||
type == "BigInt") {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -3354,6 +3347,10 @@ VariablesView.getGrip = function (aValue) {
|
|||
return { type: "-0" };
|
||||
}
|
||||
return aValue;
|
||||
case "bigint":
|
||||
return { type: "BigInt",
|
||||
text: aValue.toString(),
|
||||
};
|
||||
case "undefined":
|
||||
// document.all is also "undefined"
|
||||
if (aValue === undefined) {
|
||||
|
|
@ -3496,6 +3493,10 @@ VariablesView.stringifiers.byType = {
|
|||
return keyString + " \u2192 " + valueString;
|
||||
},
|
||||
|
||||
BigInt: function (aGrip, aOptions) {
|
||||
return aGrip.text + "n";
|
||||
},
|
||||
|
||||
}; // VariablesView.stringifiers.byType
|
||||
|
||||
VariablesView.stringifiers.byObjectClass = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue