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
Is it possible to ignore this message when running asb or asp ?
asb
asp
The text was updated successfully, but these errors were encountered:
Unfortunately not. Neither of those tools filter the output of the compiler.
But you can use the new NonNullable type which help with your issue. Here is an example:
NonNullable
if (t != null) { this.buffer.store<u8>(1); this.encode<NonNullable<T>>(<NonNullable<T>>t); } else { this.buffer.store<u8>(0); }
Sorry, something went wrong.
No branches or pull requests
Is it possible to ignore this message when running
asb
orasp
?The text was updated successfully, but these errors were encountered: