Struct Parsing continued, ditched multiple-errors support
This commit is contained in:
parent
0adef12173
commit
9f2fad1507
10 changed files with 70 additions and 48 deletions
|
@ -26,7 +26,6 @@ source-repository head
|
|||
library
|
||||
exposed-modules:
|
||||
Data.String.Ubc.Parse
|
||||
Data.String.Ubc.Parse.Error.StructError
|
||||
Data.String.Ubc.Parse.FileScope
|
||||
Data.String.Ubc.Parse.Language
|
||||
Data.String.Ubc.Parse.ParserState
|
||||
|
@ -43,6 +42,7 @@ library
|
|||
ghc-options: -Wall -Wextra -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints
|
||||
build-depends:
|
||||
base >=4.7 && <5
|
||||
, containers
|
||||
, parsec
|
||||
default-language: Haskell2010
|
||||
|
||||
|
@ -57,6 +57,7 @@ executable ubcc-exe
|
|||
ghc-options: -Wall -Wextra -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
|
||||
build-depends:
|
||||
base >=4.7 && <5
|
||||
, containers
|
||||
, parsec
|
||||
, ubcc
|
||||
default-language: Haskell2010
|
||||
|
@ -73,6 +74,7 @@ test-suite ubcc-test
|
|||
ghc-options: -Wall -Wextra -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
|
||||
build-depends:
|
||||
base >=4.7 && <5
|
||||
, containers
|
||||
, parsec
|
||||
, ubcc
|
||||
default-language: Haskell2010
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue