Home
last modified time | relevance | path

Searched refs:PatternSynDef (Results 1 – 8 of 8) sorted by relevance

/dports/math/hs-Agda/Agda-2.6.2/src/full/Agda/Syntax/
H A DAbstract.hs186 | PatternSynDef QName [Arg BindName] (Pattern' Void) constructor
585 PatternSynDef a1 b1 c1 == PatternSynDef a2 b2 c2 = (a1, b1, c1) == (a2, b2, c2) function
665 getRange (PatternSynDef x _ _ ) = getRange x
799 killRange (PatternSynDef x xs p ) = killRange3 PatternSynDef x xs p
/dports/math/hs-Agda/Agda-2.6.2/src/full/Agda/Syntax/Abstract/
H A DViews.hs431 PatternSynDef f xs p -> PatternSynDef f xs <$> rec p
493 PatternSynDef q _ _ -> singleton (WithKind PatternSynName q)
/dports/math/hs-Agda/Agda-2.6.2/src/full/Agda/TypeChecking/Rules/
H A DDecl.hs185 A.PatternSynDef{} -> none $ return ()
399 A.PatternSynDef{} -> highlight d
1024 A.PatternSynDef{} -> "PatternSynDef"
/dports/math/hs-Agda/Agda-2.6.2/src/full/Agda/Interaction/Highlighting/
H A DFromAbstract.hs213 A.PatternSynDef x xs p -> hl x <> hl xs <> hl p
/dports/math/hs-Agda/Agda-2.6.2/src/full/Agda/Termination/
H A DTermCheck.hs112 A.PatternSynDef {} -> return mempty
/dports/math/hs-Agda/Agda-2.6.2/src/full/Agda/TypeChecking/
H A DErrors.hs937 …prDef (x, (xs, p)) = prettyA (A.PatternSynDef x (map (fmap BindName) xs) p) <?> ("at" <+> pretty r)
/dports/math/hs-Agda/Agda-2.6.2/src/full/Agda/Syntax/Translation/
H A DAbstractToConcrete.hs1213 toConcrete (A.PatternSynDef x xs p) = do
H A DConcreteToAbstract.hs2082 …return [A.PatternSynDef y (map (fmap BindName) as) p] -- only for highlighting, so use unexpande…