1cabal-version: 3.42name: qute-syntax3version: 0.1.04synopsis: This package provides a parser for the QBE intermediate language.5description:6 This library provides a parser for the [QBE intermediate language](https://c9x.me/compile/)7 and algebraic data types to represent various QBE constructs. This package is the foundation8 of the [Qute](https://hackage.haskell.org/package/qute) software analysis framework.9license: GPL-3.0-only AND BSD-2-Clause AND MIT10-- license-file:11author: Sören Tempel12maintainer: soeren+hackage@soeren-tempel.net13-- copyright:14category: Language15build-type: Simple16homepage: https://git.8pit.net/qute17bug-reports: https://github.com/nmeum/qute/issues18extra-source-files: test/golden/*.qbe1920source-repository head21 type: git22 location: https://git.8pit.net/qute.git2324common warnings25 ghc-options: -Wall2627library28 import: warnings29 -- other-extensions:30 hs-source-dirs: src31 default-language: GHC20213233 other-modules:34 Language.QBE.Util,35 Language.QBE.Numbers3637 exposed-modules:38 Language.QBE,39 Language.QBE.Types,40 Language.QBE.Parser4142 build-depends:43 base,44 parsec,45 containers,46 exceptions4748test-suite qute-syntax-test49 import: warnings50 default-language: GHC202151 type: exitcode-stdio-1.052 hs-source-dirs: test53 main-is: Main.hs5455 other-modules:56 Parser,57 Golden,58 Types5960 build-depends:61 base,62 qute-syntax,63 parsec,64 process,65 filepath,66 containers,67 directory,68 tasty >=1.4.3,69 tasty-hunit >=0.10,70 tasty-golden >=2.3.5,