Revision 0c81c3f6f4d031c8b977d9c6cacf2f8ed8c936eb authored by Robert Ma on 15 March 2018, 21:39:41 UTC, committed by Michael[tm] Smith on 16 March 2018, 02:43:19 UTC
1 parent b73f249
Raw File
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