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
In line with the main compiler, we insert pattern match failure assertions ($runtime.fail()) when there is no wildcard pattern. Since the pattern matching tree optimizer emits complete if/else trees, we should be able to omit the assertion when a branch covers all tags for a given ProperName.
This failure assertion is potentially useful for catching foreign errors sneaking through, so I think this could be an option like --int-tags.
The text was updated successfully, but these errors were encountered:
In line with the main compiler, we insert pattern match failure assertions (
$runtime.fail()
) when there is no wildcard pattern. Since the pattern matching tree optimizer emits complete if/else trees, we should be able to omit the assertion when a branch covers all tags for a givenProperName
.This failure assertion is potentially useful for catching foreign errors sneaking through, so I think this could be an option like
--int-tags
.The text was updated successfully, but these errors were encountered: