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
When defining a read-only expression-bodied property, Exceptional fails to recognize the throw statement in the expression and indicates that I documented an exception that is not thrown.
Example:
/// <exception cref="InvalidOperationException">Optional is absent.</exception>publicTValue=> IsPresent ? Unpack :thrownewInvalidOperationException(C_Absent);
This consistently happens. It does work for expression-bodied properties that do not omit the get and the block that goes with it (but I consider that inconsistent style for these properties).
The text was updated successfully, but these errors were encountered:
When defining a read-only expression-bodied property, Exceptional fails to recognize the throw statement in the expression and indicates that I documented an exception that is not thrown.
Example:
This consistently happens. It does work for expression-bodied properties that do not omit the
get
and the block that goes with it (but I consider that inconsistent style for these properties).The text was updated successfully, but these errors were encountered: