https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ebd1dd81d65363cfc850d6a8712e58bdaf872de8 authored by jkereliuk on 04 December 2017, 17:25:36 UTC
debugging
Tip revision: ebd1dd8
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