definition:
|
checkRecord :: SpanInfo -> [ConstrDecl] -> CSM ()
checkRecord si (rd:_)
= case (si, rd) of
(SpanInfo (Span (Position ls cs) (Position le ce)) _,
(RecordDecl (SpanInfo _ symbs@((Span (Position _ c) _):_)) ident fs)) ->
if (ls == (getLi (getSpanInfo ident))) -- one line
then
(if (spanAlign symbs) -- alignment symbols { } ,
then
(if ((c == (cs + 2))||(c == (getCol (getSpanInfo ident)) + 2)) -- indentation of record body
then
(if (spanAlign (gatherSpanFromFieldDecls getNameSpan fs)) -- alignment names
then
(if (spanAlign (gatherSpanFromFieldDecls getSigSpan fs)) -- alignment ::
then
(unless (spanAlign (gatherSpanFromFieldDecls getTypeSpan fs)) -- alignment types
(report (Message (Span (Position ls cs) (Position le ce))
(colorizeKey "Type" <+> text "of record fields not aligned")
( text "align"
<+> colorizeKey "types"
)
)
)
)
else
(report (Message (Span (Position ls cs) (Position le ce))
(colorizeKey "::" <+> text "of records fields not aligned")
( text "align"
<+> colorizeKey "::"
)
)
)
)
else
(report (Message (Span (Position ls cs) (Position le ce))
(colorizeKey "names :" <+> text "of record fields not aligned")
( text "align"
<+> colorizeKey "names"
)
)
)
)
else
(report (Message (Span (Position ls cs) (Position le ce))
(colorizeKey "record body" <+> text "wrong indentation")
( text "indent by"
<+> colorizeKey "2"
<+> text "from record declaration or name of record"
)
)
)
)
else
(report (Message (Span (Position ls cs) (Position le ce))
(colorizeKey "record body" <+> text "not aligned")
( text "align"
<+> colorizeKey "{"
<+> text ","
<+> colorizeKey "}"
<+> text "and"
<+> colorizeKey ","
)
)
)
)
else
(report (Message (Span (Position ls cs) (Position le ce))
(colorizeKey "record declaration" <+> text "wrong formatting")
( text "write"
<+> colorizeKey "data"
<+> text "till name of record in one line"
)
)
)
_ -> error "checkRecord: SpanInfo or RecordDecl missing"
checkRecord _ [] = return ()
|