https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 2762f9e510988a8a9936fe8049d0f9ea2ba87be2 authored by James Graham on 30 July 2018, 13:36:45 UTC
Add a directory handler that uses the MANIFEST.json for listings.
Tip revision: 2762f9e
wasm_serialization_worker.js
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

onmessage = function(e) {
    var compiled_module = e.data;
    var instance = new WebAssembly.Instance(compiled_module);
    if (instance === undefined) {
        postMessage("error!");
        return;
    }
    var entrypoint = instance.exports["increment"];

    if (typeof entrypoint !== "function") {
        postMessage("error!");
        return;
    }

    var ret = entrypoint(42);
    postMessage(ret);
}
back to top