replaced by .editorconfig # ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D287841
20 lines
412 B
JavaScript
20 lines
412 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
function throw_process() {
|
|
throw "process"; // eslint-disable-line no-throw-literal
|
|
}
|
|
|
|
class ErrorProcessor extends AudioWorkletProcessor {
|
|
process() {
|
|
throw_process();
|
|
}
|
|
}
|
|
registerProcessor("error", ErrorProcessor);
|
|
|
|
function throw_error() {
|
|
throw new Error("addModule");
|
|
}
|
|
|
|
throw_error();
|