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
If a matcher (e.g. in the transform decorator) is incomplete, it can raise a MatcherError which is a compiler bug. However, this will only occur when this matcher is actually used which could be very rarely.
To prevent this, we could add a check in the transform decorator. If matchers are used elsewhere, they would suffer from the same issue. However, that should happen only rarely.
The text was updated successfully, but these errors were encountered:
If a matcher (e.g. in the
transform
decorator) is incomplete, it can raise aMatcherError
which is a compiler bug. However, this will only occur when this matcher is actually used which could be very rarely.To prevent this, we could add a check in the
transform
decorator. If matchers are used elsewhere, they would suffer from the same issue. However, that should happen only rarely.The text was updated successfully, but these errors were encountered: