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.
When working on #24190 I ran into an issue where closure compiler was completely removing the
parameterDescriptorsstatic getter: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.