asbuild
asbuild copied to clipboard
Ignoring INFO AS210
Is it possible to ignore this message when running asb or asp ?
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:
if (t != null) {
this.buffer.store<u8>(1);
this.encode<NonNullable<T>>(<NonNullable<T>>t);
} else {
this.buffer.store<u8>(0);
}