Home
last modified time | relevance | path

Searched refs:modifySystem (Results 1 – 2 of 2) sorted by relevance

/dports/math/hs-Agda/Agda-2.6.2/src/full/Agda/TypeChecking/
H A DSubstitute.hs311 , funExtLam = modifySystem (`apply` args) <$> extLam
329 , funExtLam = modifySystem (\ _ -> __IMPOSSIBLE__) <$> extLam
662 , funExtLam = modifySystem (abstract tel) <$> extLam
674 , funExtLam = modifySystem (\ _ -> __IMPOSSIBLE__) <$> extLam
/dports/math/hs-Agda/Agda-2.6.2/src/full/Agda/TypeChecking/Monad/
H A DBase.hs1909 modifySystem :: (System -> System) -> ExtLamInfo -> ExtLamInfo
1910 modifySystem f e = let !e' = e { extLamSys = f <$> extLamSys e } in e' function