Skip to content

Commit

Permalink
[ refactor ] Add missing lens for envPrintMetasBare field
Browse files Browse the repository at this point in the history
  • Loading branch information
jespercockx committed Dec 15, 2021
1 parent 9b99f42 commit 27b34ec
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/full/Agda/TypeChecking/Monad/Base.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3112,6 +3112,9 @@ eCompareBlocked f e = f (envCompareBlocked e) <&> \ x -> e { envCompareBlocked =
ePrintDomainFreePi :: Lens' Bool TCEnv
ePrintDomainFreePi f e = f (envPrintDomainFreePi e) <&> \ x -> e { envPrintDomainFreePi = x }

ePrintMetasBare :: Lens' Bool TCEnv
ePrintMetasBare f e = f (envPrintMetasBare e) <&> \ x -> e { envPrintMetasBare = x }

eInsideDotPattern :: Lens' Bool TCEnv
eInsideDotPattern f e = f (envInsideDotPattern e) <&> \ x -> e { envInsideDotPattern = x }

Expand Down

0 comments on commit 27b34ec

Please sign in to comment.