// WebAssembly Module for WelsonJS (Based on Microsoft JScript)

var WebAssemblyObject = function() {
    this.instantiate = function(bufferSource, importObject) {
        // ... todo ...
    };

    this.instantiateStreaming = function(source, importObject) {
        // ... todo ...
    };
  
    this.compile = function(bufferSource) {
        // ... todo ...
    };
  
    this.compileStreaming = function(source) {
        // ... todo ...
    };

    this.validate = function(bufferSource) {
        // ... todo ...
    };
};

exports.WebAssembly = new WebAssemblyObject();