Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/python/ply/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 10.2.2025 mit Größe 129 B image not shown  

SSL test_nsjsinspector.js

  Sprache: JAVA
 

/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */


"use strict";

// Test the basic functionality of the nsIJSInspector component.
var gCount = 0;
const MAX = 10;

var inspector = Cc["@mozilla.org/jsinspector;1"].getService(Ci.nsIJSInspector);

// Emulate 10 simultaneously-debugged windows from 3 separate client connections.
var requestor = count => ({
  url: "http://foo/bar/" + count,
  connection: "conn" + (count % 3),
});

function run_test() {
  test_nesting();
}

function test_nesting() {
  Assert.equal(inspector.eventLoopNestLevel, 0);

  Services.tm.dispatchToMainThread({ run: enterEventLoop });

  Assert.equal(inspector.enterNestedEventLoop(requestor(gCount)), 0);
  Assert.equal(inspector.eventLoopNestLevel, 0);
  Assert.equal(inspector.lastNestRequestor, null);
}

function enterEventLoop() {
  if (gCount++ < MAX) {
    Services.tm.dispatchToMainThread({ run: enterEventLoop });

    Object.create(requestor(gCount));

    Assert.equal(inspector.eventLoopNestLevel, gCount);
    Assert.equal(inspector.lastNestRequestor.url, requestor(gCount - 1).url);
    Assert.equal(
      inspector.lastNestRequestor.connection,
      requestor(gCount - 1).connection
    );
    Assert.equal(inspector.enterNestedEventLoop(requestor(gCount)), gCount);
  } else {
    Assert.equal(gCount, MAX + 1);
    Services.tm.dispatchToMainThread({ run: exitEventLoop });
  }
}

function exitEventLoop() {
  if (inspector.lastNestRequestor != null) {
    Assert.equal(inspector.lastNestRequestor.url, requestor(gCount - 1).url);
    Assert.equal(
      inspector.lastNestRequestor.connection,
      requestor(gCount - 1).connection
    );
    if (gCount-- > 1) {
      Services.tm.dispatchToMainThread({ run: exitEventLoop });
    }

    Assert.equal(inspector.exitNestedEventLoop(), gCount);
    Assert.equal(inspector.eventLoopNestLevel, gCount);
  }
}

Messung V0.5 in Prozent
C=93 H=94 G=93

¤ 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.0.14Bemerkung:  (vorverarbeitet am  2026-06-05) ¤

*Bot Zugriff






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

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.