1 module Language.Symantic.Grammar.Fixity where
3 import Data.Bool as Bool
4 import Data.Eq (Eq(..))
5 import Data.Function ((.))
7 import Data.Maybe (Maybe(..))
8 import Data.Ord (Ord(..))
10 import Data.String (IsString(..))
11 import Text.Show (Show)
21 = Prefix { unifix_prece :: Precedence }
22 | Postfix { unifix_prece :: Precedence }
28 { infix_assoc :: Maybe Associativity
29 , infix_prece :: Precedence
32 infixL :: Precedence -> Infix
33 infixL = Infix (Just AssocL)
35 infixR :: Precedence -> Infix
36 infixR = Infix (Just AssocR)
38 infixB :: Side -> Precedence -> Infix
39 infixB = Infix . Just . AssocB
41 infixN :: Precedence -> Infix
42 infixN = Infix Nothing
50 -- | Given 'Precedence' and 'Associativity' of its parent operator,
51 -- and the operand 'Side' it is in,
52 -- return whether an 'Infix' operator
53 -- needs to be enclosed by parenthesis.
54 needsParenInfix :: (Infix, Side) -> Infix -> Bool
55 needsParenInfix (po, lr) op =
56 infix_prece op < infix_prece po
57 || infix_prece op == infix_prece po
61 case (lr, infix_assoc po) of
62 (_, Just AssocB{}) -> True
63 (SideL, Just AssocL) -> True
64 (SideR, Just AssocR) -> True
67 -- | If 'needsParenInfix' is 'True',
68 -- enclose the given 'IsString' by parenthesis,
69 -- otherwise returns the same 'IsString'.
71 :: (Semigroup s, IsString s)
72 => (Infix, Side) -> Infix -> s -> s
74 if needsParenInfix po op
75 then fromString "(" <> s <> fromString ")"
78 -- * Type 'Precedence'
81 -- ** Class 'PrecedenceOf'
82 class PrecedenceOf a where
83 precedence :: a -> Precedence
84 instance PrecedenceOf Fixity where
85 precedence (Fixity1 uni) = precedence uni
86 precedence (Fixity2 inf) = precedence inf
87 instance PrecedenceOf Unifix where
88 precedence = unifix_prece
89 instance PrecedenceOf Infix where
90 precedence = infix_prece
92 -- * Type 'Associativity'
94 = AssocL -- ^ Associate to the left: @a ¹ b ² c == (a ¹ b) ² c@
95 | AssocR -- ^ Associate to the right: @a ¹ b ² c == a ¹ (b ² c)@
96 | AssocB Side -- ^ Associate to both sides, but to 'Side' when reading.