We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example, doing this in:
class MyWorkletProcessor extends AudioWorkletProcessor { constructor() { super(); this.port.onmessage = (e) => ... } }
Will result in an error, because this.port is undefined.
this.port
undefined
(I hate to be picky, but did anyone actually test this project? Really doesn't seem so, virtually everything is broken in it...)
The text was updated successfully, but these errors were encountered:
The port is assigned, it's just done after construction. I'll move it into the constructor so that your example works.
Sorry, something went wrong.
36d7731
No branches or pull requests
For example, doing this in:
Will result in an error, because
this.port
isundefined
.(I hate to be picky, but did anyone actually test this project? Really doesn't seem so, virtually everything is broken in it...)
The text was updated successfully, but these errors were encountered: