Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  test_xpcwn_instanceof.js

  Sprache: JAVA
 

/* 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/. */


// Tests for custom `instanceof` behavior via XPC_SCRIPTABLE_WANT_HASINSTANCE.

add_task(function id_instanceof() {
  // ID objects are instances of Components.ID.
  let id = Components.ID("{f2f5c784-7f6c-43f5-81b0-45ff32c312b1}");
  Assert.equal(id instanceof Components.ID, true);
  Assert.equal({} instanceof Components.ID, false);
  Assert.equal(null instanceof Components.ID, false);

  // Components.ID has a Symbol.hasInstance function.
  let desc = Object.getOwnPropertyDescriptor(Components.ID, Symbol.hasInstance);
  Assert.equal(typeof desc, "object");
  Assert.equal(typeof desc.value, "function");

  // Test error handling when calling this function with unexpected values.
  Assert.throws(() => desc.value.call(null), /At least 1 argument required/);
  Assert.throws(() => desc.value.call(null1), /unexpected this value/);
  Assert.throws(() => desc.value.call({}, {}), /NS_ERROR_XPC_BAD_OP_ON_WN_PROTO/);
});

Messung V0.5 in Prozent
C=87 H=93 G=89

¤ Dauer der Verarbeitung: 0.19 Sekunden  (vorverarbeitet am  2026-08-25) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

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.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Statistik
#Sources=277311
#Domains=752002