-
Couldn't load subscription status.
- Fork 3.4k
Closed
Labels
Description
When working on #24190 I ran into an issue where closure compiler was completely removing the parameterDescriptors static getter:
static get parameterDescriptors() {
return audioParams;
}
This field seems to be required to be static getter field: https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletProcessor/parameterDescriptors
As a horrible workaround I mangle this code before passing to closure and then unmangle it afterwards.