forked from mirrors/gecko-dev
This is the first part of a bigger patch to make WebConsoleFront methods consumers handle fronts instead of plain grips. The main challenge with most of console methods is that the server can return either a primitive, an object that represent a primitive (undefined, null, Infinity, ...), a longString grip or an object grip. Since this would be complex to map as a protocol.js type, this patch either override the methods where we want to return fronts, or intercept events with the `before` method on them. The response is then handled to a function that will iteratore of the result object in a recursive manner, and create fronts when needed. Differential Revision: https://phabricator.services.mozilla.com/D54506 --HG-- extra : moz-landing-system : lando
42 lines
965 B
JavaScript
42 lines
965 B
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
const {
|
|
generateActorSpec,
|
|
Option,
|
|
RetVal,
|
|
types,
|
|
} = require("devtools/shared/protocol");
|
|
|
|
types.addDictType("symboliterator.data", {
|
|
ownSymbols: "array:symboliterator.ownsymbols",
|
|
});
|
|
|
|
types.addDictType("symboliterator.ownsymbols", {
|
|
name: "string",
|
|
descriptor: "nullable:object.descriptor",
|
|
});
|
|
|
|
const symbolIteratorSpec = generateActorSpec({
|
|
typeName: "symbolIterator",
|
|
|
|
methods: {
|
|
slice: {
|
|
request: {
|
|
start: Option(0, "number"),
|
|
count: Option(0, "number"),
|
|
},
|
|
response: RetVal("symboliterator.data"),
|
|
},
|
|
all: {
|
|
request: {},
|
|
response: RetVal("symboliterator.data"),
|
|
},
|
|
release: { release: true },
|
|
},
|
|
});
|
|
|
|
exports.symbolIteratorSpec = symbolIteratorSpec;
|