Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply apSubst to Type field of EPropGuards in TVars instance for Expr #1570

Merged
merged 2 commits into from
Sep 1, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/Cryptol/TypeCheck/Subst.hs
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,9 @@ instance TVars Expr where

EWhere e ds -> EWhere !$ (go e) !$ (apSubst su ds)

EPropGuards guards ty -> EPropGuards !$ (\(props, e) -> (apSubst su `fmap'` props, apSubst su e)) `fmap'` guards .$ ty
EPropGuards guards ty -> EPropGuards
!$ (\(props, e) -> (apSubst su `fmap'` props, apSubst su e)) `fmap'` guards
!$ apSubst su ty
RyanGlScott marked this conversation as resolved.
Show resolved Hide resolved

instance TVars Match where
apSubst su (From x len t e) = From x !$ (apSubst su len) !$ (apSubst su t) !$ (apSubst su e)
Expand Down