mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-07 07:24:59 +00:00
26 lines
579 B
JavaScript
26 lines
579 B
JavaScript
// 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();
|