Eine aufbereitete Darstellung der Quelle

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

Benutzer

Quelle  simpleThread_worker.js

  Sprache: JAVA
 

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

"use strict";

function messageListener(event) {
  var exception;
  try {
    event.bubbles = true;
  } catch (e) {
    exception = e;
  }

  if (!(exception instanceof TypeError)) {
    throw exception;
  }

  switch (event.data) {
    case "no-op":
      break;
    case "components":
      postMessage(Components.toString());
      break;
    case "start":
      for (var i = 0; i < 1000; i++) {}
      postMessage("started");
      break;
    case "stop":
      self.postMessage("no-op");
      postMessage("stopped");
      self.removeEventListener("message", messageListener);
      break;
    default:
      throw "Bad message: " + event.data;
  }
}

if (!("DedicatedWorkerGlobalScope" in self)) {
  throw new Error("DedicatedWorkerGlobalScope should be visible!");
}
if (!(self instanceof DedicatedWorkerGlobalScope)) {
  throw new Error("The global should be a SharedWorkerGlobalScope!");
}
if (!(self instanceof WorkerGlobalScope)) {
  throw new Error("The global should be a WorkerGlobalScope!");
}
if ("SharedWorkerGlobalScope" in self) {
  throw new Error("SharedWorkerGlobalScope should not be visible!");
}

addEventListener("message", { handleEvent: messageListener });

Messung V0.5 in Prozent
C=97 H=72 G=85

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-08-24) ¤

*© 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