language-ats 0.1.0.1 → 0.1.0.3
raw patch · 3 files changed
+5/−2 lines, 3 filesdep ~composition-preludePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: composition-prelude
API changes (from Hackage documentation)
Files
- language-ats.cabal +2/−1
- src/Language/ATS/Parser.y +1/−0
- stack.yaml +2/−1
language-ats.cabal view
@@ -1,5 +1,5 @@ name: language-ats-version: 0.1.0.1+version: 0.1.0.3 synopsis: Parser and pretty-printer for ATS. description: Parser and pretty-printer for [ATS](http://www.ats-lang.org/), written with Happy and Alex. homepage: https://github.com/vmchale/language-ats#readme@@ -36,6 +36,7 @@ , lens , deepseq , ansi-wl-pprint >= 0.6.8+ , composition-prelude >= 0.1.1.2 , recursion-schemes , ansi-terminal , unordered-containers
src/Language/ATS/Parser.y view
@@ -423,6 +423,7 @@ | let ATS in Expression extern {% Left $ Expected $5 "end" "extern" } | let ATS in Expression fun {% Left $ Expected $5 "end" "fun" } | let ATS in Expression vtypedef {% Left $ Expected $5 "end" "vtypedef" }+ | let ATS in Expression implement {% Left $ Expected $5 "end" "implement" } | if Expression then Expression else else {% Left $ Expected $6 "Expression" "else" } -- | Parse a termetric
stack.yaml view
@@ -2,7 +2,8 @@ resolver: lts-10.3 packages: - '.'-extra-deps: []+extra-deps:+ - composition-prelude-1.1.0.0 flags: language-ats: development: false