| /** |
| * Copyright 2014 The Emscripten Authors. All rights reserved. |
| * Emscripten is available under two separate licenses, the MIT license and the |
| * University of Illinois/NCSA Open Source License. Both these licenses can be |
| * found in the LICENSE file. |
| * |
| * This file contains definitions for things that we'd really rather the closure compiler *didn't* minify. |
| * See http://code.google.com/p/closure-compiler/wiki/FAQ#How_do_I_write_an_externs_file |
| * See also the discussion here: https://github.com/emscripten-core/emscripten/issues/1979 |
| * |
| * The closure_compiler() method in tools/shared.py refers to this file when calling closure. |
| */ |
| |
| // Special placeholder for `import.meta`. |
| var EMSCRIPTEN$IMPORT$META; |
| |
| // Closure externs used by library_sockfs.js |
| |
| /** |
| * Backported from latest closure... |
| * @see https://developer.mozilla.org/en-US/docs/Web/API/Document/currentScript |
| */ |
| Document.prototype.currentScript; |
| |
| /** |
| * Don't minify Math.* |
| */ |
| /** |
| * @suppress {duplicate} |
| */ |
| var Math = {}; |
| Math.abs = function() {}; |
| Math.cos = function() {}; |
| Math.sin = function() {}; |
| Math.tan = function() {}; |
| Math.acos = function() {}; |
| Math.asin = function() {}; |
| Math.atan = function() {}; |
| Math.atan2 = function() {}; |
| Math.exp = function() {}; |
| Math.log = function() {}; |
| Math.sqrt = function() {}; |
| Math.ceil = function() {}; |
| Math.floor = function() {}; |
| Math.pow = function() {}; |
| Math.imul = function() {}; |
| Math.fround = function() {}; |
| Math.round = function() {}; |
| Math.min = function() {}; |
| Math.max = function() {}; |
| Math.clz32 = function() {}; |
| Math.trunc = function() {}; |
| |
| /** |
| * Atomics |
| */ |
| |
| var Atomics = {}; |
| Atomics.compareExchange = function() {}; |
| Atomics.exchange = function() {}; |
| Atomics.wait = function() {}; |
| Atomics.notify = function() {}; |
| Atomics.load = function() {}; |
| Atomics.store = function() {}; |
| |
| /** |
| * @const |
| * @suppress {duplicate, checkTypes} |
| */ |
| var WebAssembly = {}; |
| /** |
| * @constructor |
| * @param {Object} globalDescriptor |
| * @param {*=} value |
| */ |
| WebAssembly.Global = function(globalDescriptor, value) {}; |
| /** |
| * @constructor |
| * @param {Object} tagDescriptor |
| */ |
| WebAssembly.Tag = function(tagDescriptor) {}; |
| /** |
| * Note: Closure compiler does not support function overloading, omit this overload for now. |
| * {function(!WebAssembly.Module, Object=):!Promise<!WebAssembly.Instance>} |
| */ |
| /** @dict */ |
| WebAssembly.Instance.prototype.exports; |
| /** |
| * @type {!ArrayBuffer} |
| */ |
| WebAssembly.Memory.prototype.buffer; |
| /** |
| * @type {number} |
| */ |
| WebAssembly.Table.prototype.length; |
| |
| /** |
| * @suppress {undefinedVars} |
| */ |
| var wakaUnknownAfter; |
| /** |
| * @suppress {undefinedVars} |
| */ |
| var wakaUnknownBefore; |
| /** |
| * @suppress {undefinedVars} |
| */ |
| var MozBlobBuilder; |
| |
| // Module loaders externs, for AMD etc. |
| |
| /** |
| * @param {Function} wrapper |
| */ |
| var define = function (wrapper) {}; |
| |
| /** |
| * @type {Worker} |
| */ |
| var worker; |
| |
| /** |
| * @param {Object} message |
| */ |
| var onmessage = function(message) {}; |
| var onmessageerror = function() {}; |
| |
| /** |
| * @param {string} type |
| * @param {!Function} listener |
| * @param {Object|boolean=} optionsOrUseCapture |
| */ |
| var addEventListener = function (type, listener, optionsOrUseCapture) {}; |
| |
| /** |
| * @param {string} type |
| * @param {!Function} listener |
| */ |
| var removeEventListener = function (type, listener) {}; |
| |
| /** |
| * @type {Function} |
| */ |
| var close; |
| |
| // Fetch.js/Fetch Worker |
| |
| /** |
| * @suppress {undefinedVars} |
| */ |
| var ENVIRONMENT_IS_FETCH_WORKER; |
| |
| // Due to the way MODULARIZE works, Closure is run on generated code that does not define _scriptDir, |
| // but only after MODULARIZE has finished, _scriptDir is injected to the generated code. |
| // Therefore it cannot be minified. |
| /** |
| * @suppress {duplicate, undefinedVars} |
| */ |
| var _scriptDir; |
| |
| // Closure run on asm.js uses a hack to execute only on shell code, declare externs needed for it. |
| /** |
| * @suppress {undefinedVars} |
| */ |
| var wakaGlobal; |
| /** |
| * @suppress {undefinedVars} |
| */ |
| var wakaEnv; |
| /** |
| * @suppress {undefinedVars} |
| */ |
| var wakaBuffer; |
| |
| |
| // Browser externs on global window object. |
| var pageXOffset; |
| var pageYOffset; |
| var innerWidth; |
| var innerHeight; |
| var outerWidth; |
| var outerHeight; |
| var event; |
| var devicePixelRatio; |
| |
| // TODO: Use Closure's multifile support and/or migrate worker.js onmessage handler to inside the MODULARIZEd block |
| // to be able to remove all the variables below: |
| |
| // Variables that are present in both output runtime .js file/JS lib files, and worker.js, so cannot be minified because |
| // the names need to match: |
| /** @suppress {duplicate} */ |
| var noExitRuntime; |
| |
| /* |
| * AudioWorkletGlobalScope globals |
| */ |
| var registerProcessor = function(name, obj) {}; |
| var currentFrame; |
| var currentTime; |
| var sampleRate; |
| |
| /* |
| * WebGPU globals |
| */ |
| var GPUBufferUsage; |
| var GPUColorWrite; |
| var GPUMapMode; |
| var GPUShaderStage; |
| var GPUTextureUsage; |
| var GPU; |
| var GPUAdapter; |
| var GPUBindGroup; |
| var GPUBindGroupLayout; |
| var GPUBuffer; |
| var GPUCanvasContext; |
| var GPUCommandBuffer; |
| var GPUCommandEncoder; |
| var GPUCompilationInfo; |
| var GPUCompilationMessage; |
| var GPUComputePassEncoder; |
| var GPUComputePipeline; |
| var GPUDevice; |
| var GPUDeviceLostInfo; |
| var GPUExternalTexture; |
| var GPUOutOfMemoryError; |
| var GPUPipelineLayout; |
| var GPUQuerySet; |
| var GPUQueue; |
| var GPURenderBundle; |
| var GPURenderBundleEncoder; |
| var GPURenderPassEncoder; |
| var GPURenderPipeline; |
| var GPUSampler; |
| var GPUShaderModule; |
| var GPUSupportedFeatures; |
| var GPUSupportedLimits; |
| var GPUTexture; |
| var GPUTextureView; |
| var GPUUncapturedErrorEvent; |
| var GPUValidationError; |
| |
| /* |
| * Avoid closure minifying anything to "id". See #13965 |
| */ |
| var id; |