Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/promise/tests/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  test_webassembly_compile_worker.js

  Sprache: JAVA
 

const sampleURL = "test_webassembly_compile_sample.wasm";
const sampleExportName = "run";
const sampleResult = 1275;

/* eslint-disable no-throw-literal */

function checkSampleModule(m) {
  if (!(m instanceof WebAssembly.Module)) {
    throw "not a module";
  }
  var i = new WebAssembly.Instance(m);
  if (!(i instanceof WebAssembly.Instance)) {
    throw "not an instance";
  }
  if (i.exports[sampleExportName]() !== sampleResult) {
    throw "wrong result";
  }
}

function checkSampleInstance(i) {
  if (!(i instanceof WebAssembly.Instance)) {
    throw "not an instance";
  }
  if (i.exports[sampleExportName]() !== sampleResult) {
    throw "wrong result";
  }
}

const initObj = { headers: { "Content-Type""application/wasm" } };

onmessage = e => {
  WebAssembly.compile(e.data)
    .then(m => checkSampleModule(m))
    .then(() => WebAssembly.instantiate(e.data))
    .then(({ module, instance }) => {
      checkSampleModule(module);
      checkSampleInstance(instance);
    })
    .then(() => WebAssembly.compileStreaming(new Response(e.data, initObj)))
    .then(m => checkSampleModule(m))
    .then(() => WebAssembly.instantiateStreaming(new Response(e.data, initObj)))
    .then(({ module, instance }) => {
      checkSampleModule(module);
      checkSampleInstance(instance);
    })
    .then(() => WebAssembly.compileStreaming(fetch(sampleURL)))
    .then(m => checkSampleModule(m))
    .then(() => WebAssembly.instantiateStreaming(fetch(sampleURL)))
    .then(({ module, instance }) => {
      checkSampleModule(module);
      checkSampleInstance(instance);
    })
    .then(() => postMessage("ok"))
    .catch(err => postMessage("fail: " + err));
};

Messung V0.5 in Prozent
C=84 H=100 G=92

¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet am  2026-06-11) ¤

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