CurryInfo: stylechecker-2.0.0 / Check.AST.Pattern.NotEqual

classes:

              
documentation:

              
name:
Check.AST.Pattern.NotEqual
operations:
checkNotEqual
sourcecode:
module Check.AST.Pattern.NotEqual where

import Curry.SpanInfo
import Curry.Span
import Curry.Position
import Curry.Types
import Curry.Ident
import Text.Pretty

import Types

-- If `not (a = b)` or `not (a /= b)` is used, `/=` or `==` is recommended instead.
-- -- NOTE: add `not ((==) a b)`
checkNotEqual :: Expression a -> Int -> CSM ()
checkNotEqual e _ =
  case e of
    (Apply sI
      (Variable _ _
        (QualIdent _ _
          (Ident _ "not" _)))
      (Paren _
        (InfixApply
          _
          _
          (InfixOp _
            (QualIdent _ _
              (Ident _ "==" _)))
          _ )))
      -> report (Message
                  (getSpan sI)
                  (text "Do not use" <+> colorizeKey "not (a == b)")
                  (text "Use" <+> colorizeKey "a /= b" <+> text "instead"))
    (Apply sI
      (Variable _ _
        (QualIdent _ _
          (Ident _ "not" _)))
      (Paren _
        (InfixApply
          _
          _
          (InfixOp _
            (QualIdent _ _
              (Ident _ "/=" _)))
          _ )))
      -> report (Message
                  (getSpan sI)
                  (text "Do not use" <+> colorizeKey "not (a /= b)")
                  (text "Use" <+> colorizeKey "a == b" <+> text "instead"))
    (Apply sI
      (Variable _ _
        (QualIdent _ _
          (Ident _ "not" _)))
      (Paren _
        (Apply _
          (Apply _
            (Variable _ _
              (QualIdent _ _
                (Ident _ "/=" _)
              )
            )
          _)
        _)))
      -> report (Message
                  (getSpan sI)
                  (text "Do not use" <+> colorizeKey "not ((/=) a b)")
                  (text "Use" <+> colorizeKey "(==) a b" <+> text "instead"))
    (Apply sI
      (Variable _ _
        (QualIdent _ _
          (Ident _ "not" _)))
      (Paren _
        (Apply _
          (Apply _
            (Variable _ _
              (QualIdent _ _
                (Ident _ "==" _)
              )
            )
          _)
        _)))
      -> report (Message
                  (getSpan sI)
                  (text "Do not use" <+> colorizeKey "not ((==) a b)")
                  (text "Use" <+> colorizeKey "(/=) a b" <+> text "instead"))
    _ -> return ()
types:

              
unsafe:
safe