Add a few more hardcoded fixities

ghc92
Lennart Spitzner 2023-05-18 20:24:44 +02:00
parent a90550f62d
commit 5ee0733f96
1 changed files with 181 additions and 169 deletions

View File

@ -379,6 +379,18 @@ hardcodedFixity allowUnqualify = \case
":>" -> fixity InfixL 9
":>=" -> fixity InfixL 9
":->" -> fixity InfixL 9
".==" -> fixity InfixN 5
"./" -> fixity InfixN 5
".<" -> fixity InfixN 5
".<=" -> fixity InfixN 5
".>" -> fixity InfixN 5
".>=" -> fixity InfixN 5
"`member`" -> fixity InfixN 8
"`notMember`" -> fixity InfixN 8
".//" -> fixity InfixL 4
".&&" -> fixity InfixR 3
".||" -> fixity InfixR 2
".=>" -> fixity InfixR 1
-- servant
":>" -> fixity InfixR 4