Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Experiments with AST representations #1

Closed
wants to merge 10 commits into from
Prev Previous commit
Next Next commit
Add AnnotatedTerm and use annotation to report nicer undefined variab…
…le errors
  • Loading branch information
fizruk committed Feb 21, 2021
commit 089f3d275fb321067ff677ae5fbccf98dc7a83d3
13 changes: 5 additions & 8 deletions rzk/rzk.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cabal-version: 1.12
--
-- see: https://github.com/sol/hpack
--
-- hash: 19633eb32342102057b2c107aed4c10bb65d863dc5e13269ee3dd4e7f9928628
-- hash: 2ae15fb94b314d3beeb9cfdc7449e6c7550bf4ce4406e88e3910951feac7f9b5

name: rzk
version: 0.1.0.0
Expand All @@ -13,7 +13,7 @@ homepage: https://github.com/fizruk/rzk#readme
bug-reports: https://github.com/fizruk/rzk/issues
author: Nikolai Kudasov
maintainer: nickolay.kudasov@gmail.com
copyright: 2020 Nikolai Kudasov
copyright: 2020-2021 Nikolai Kudasov
license: BSD3
build-type: Simple
extra-source-files:
Expand Down Expand Up @@ -48,8 +48,7 @@ library
src
ghc-options: -Wall -fno-warn-type-defaults -O2
build-depends:
MemoTrie
, ansi-terminal
ansi-terminal
, base >=4.7 && <5
, bound
, deriving-compat
Expand All @@ -71,8 +70,7 @@ executable rzk
app
ghc-options: -Wall -fno-warn-type-defaults -O2 -threaded -rtsopts -with-rtsopts=-N
build-depends:
MemoTrie
, ansi-terminal
ansi-terminal
, base >=4.7 && <5
, bound
, deriving-compat
Expand All @@ -96,8 +94,7 @@ test-suite rzk-test
test
ghc-options: -Wall -fno-warn-type-defaults -O2 -threaded -rtsopts -with-rtsopts=-N
build-depends:
MemoTrie
, ansi-terminal
ansi-terminal
, base >=4.7 && <5
, bound
, deriving-compat
Expand Down
Loading