You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Skips unnecessary null-checks on non-nullable intermediate results
Macro now works with multi-arg methods
Function calls are now flattened. e.g. In X(Y(a)) the result of Y(a) won't be null-checked, because null could be a valid input into a method or function.
?? macro is now more efficient and only checks the minimum number of expressions needed to find a non-null value. Before it would check all provided expressions.