File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
src/Language/Fortran/Analysis
test/Language/Fortran/Parser Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 3535 run : stack --no-terminal test --only-dependencies
3636
3737 - name : Build and run tests
38- run : stack --no-terminal haddock --test --no-haddock-deps
38+ run : stack --no-terminal haddock --test --no-haddock-deps --pedantic
3939
4040 - name : Install (to place executable at a known location)
4141 run : stack --no-terminal install
Original file line number Diff line number Diff line change @@ -49,13 +49,13 @@ instance Out SemType
4949-- TypeSpec?
5050instance Pretty SemType where
5151 pprint' v = \ case
52- TInteger k -> " integer"
53- TReal k -> " real"
54- TComplex k -> " complex"
55- TLogical k -> " logical"
56- TByte k -> " byte"
57- TCharacter len k -> " character"
58- TArray st dims -> pprint' v st <+> parens " (A)"
52+ TInteger _ -> " integer"
53+ TReal _ -> " real"
54+ TComplex _ -> " complex"
55+ TLogical _ -> " logical"
56+ TByte _ -> " byte"
57+ TCharacter _ _ -> " character"
58+ TArray st _ -> pprint' v st <+> parens " (A)"
5959 TCustom str -> pprint' v (TypeCustom str)
6060
6161-- | The declared dimensions of a staticically typed array variable
Original file line number Diff line number Diff line change 7777 jExp a b c = Just (Exponent a b c)
7878 expE = ExpLetterE
7979 expD = ExpLetterD
80- fails test = return test `shouldThrow` anyException
80+ -- fails test = return test `shouldThrow` anyException
You can’t perform that action at this time.
0 commit comments