/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
async all() { const result = await super.all(); returnthis._onResult(result);
}
_onResult(result) { if (!result.ownProperties) { return result;
}
// The result packet can have multiple properties that hold grips which we may need // to turn into fronts. const gripKeys = ["value", "getterValue", "get", "set"];
Object.entries(result.ownProperties).forEach(([key, descriptor]) => { if (descriptor) { for (const gripKey of gripKeys) { if (descriptor.hasOwnProperty(gripKey)) {
result.ownProperties[key][gripKey] = getAdHocFrontOrPrimitiveGrip(
descriptor[gripKey], this
);
}
}
}
}); return result;
}
}
registerFront(PropertyIteratorFront);
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.16 Sekunden
(vorverarbeitet am 2026-08-25)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.