https://byorgey.wordpress.com/2021/09/08/implementing-hindley-milner-with-the-unification-fd-library/
51 lines
951 B
Text
51 lines
951 B
Text
cabal-version: 3.0
|
|
|
|
name: language
|
|
|
|
version: 0.1.0.0
|
|
license: MIT
|
|
license-file: LICENSE
|
|
author: bachelor-group-66-systemf
|
|
maintainer: sebastian.selander@gmail.com
|
|
category: Language
|
|
build-type: Simple
|
|
|
|
extra-doc-files: CHANGELOG.md
|
|
|
|
extra-source-files:
|
|
Grammar.cf
|
|
|
|
|
|
common warnings
|
|
ghc-options: -Wdefault
|
|
|
|
executable language
|
|
import: warnings
|
|
|
|
main-is: Main.hs
|
|
|
|
other-modules:
|
|
Grammar.Abs
|
|
Grammar.Lex
|
|
Grammar.Par
|
|
Grammar.Print
|
|
Grammar.Skel
|
|
Grammar.ErrM
|
|
TypeChecker.TypeChecker
|
|
TypeChecker.TypeCheckerIr
|
|
TypeChecker.Unification
|
|
Renamer.Renamer
|
|
Renamer.RenamerIr
|
|
|
|
hs-source-dirs: src
|
|
|
|
build-depends:
|
|
base >=4.16
|
|
, mtl
|
|
, containers
|
|
, either
|
|
, extra
|
|
, array
|
|
, unification-fd
|
|
|
|
default-language: GHC2021
|