Skip to content

Commit

Permalink
Fixes for build with GHC 9.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Noah Harvey authored and yairchu committed Aug 30, 2024
1 parent 93844c6 commit 4cf97a7
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions hypertypes.cabal
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.35.2.
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack

name: hypertypes
version: 0.2.2
version: 0.2.3
synopsis: Typed ASTs
description: Please see the README on GitHub at <https://github.com/lamdu/hypertypes#readme>
category: Algorithms, Compilers/Interpreters, Language, Logic, Unification
Expand Down
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: hypertypes
version: 0.2.2
version: 0.2.3
github: "lamdu/hypertypes"
license: BSD3
author: "Yair Chuchem"
Expand Down
2 changes: 1 addition & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
resolver: lts-21.4
resolver: lts-22.33
packages:
- .
2 changes: 2 additions & 0 deletions test/Hyper/Syntax/NamelessScope.hs
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ instance HasTypeOf1 t => HasInferOf1 (Scope t) where

instance
( Infer1 m t
, Monad m
, InferOf1IndexConstraint t ~ DeBruijnIndex
, DeBruijnIndex h
, UnifyGen m (TypeOf (t h))
Expand Down Expand Up @@ -123,6 +124,7 @@ instance

instance
( MonadReader env m
, Monad m
, HasScopeTypes (UVarOf m) (TypeOf (t h)) env
, DeBruijnIndex h
, UnifyGen m (TypeOf (t h))
Expand Down
1 change: 0 additions & 1 deletion test/LangATest.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module LangATest (test) where

import qualified Control.Lens as Lens
import Control.Lens.Operators
import Control.Monad.RWS
import Control.Monad.ST (runST)
import ExprUtils
import Hyper
Expand Down
1 change: 1 addition & 0 deletions test/LangB.hs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module LangB where

import TypeLang

import Control.Monad (void)
import Control.Applicative
import qualified Control.Lens as Lens
import Control.Lens.Operators
Expand Down
1 change: 0 additions & 1 deletion test/TypeLang.hs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import Control.Applicative
import Control.Lens (ALens')
import qualified Control.Lens as Lens
import Control.Lens.Operators
import Control.Monad.Except
import Control.Monad.Reader (MonadReader)
import Control.Monad.ST.Class (MonadST (..))
import Data.STRef
Expand Down

0 comments on commit 4cf97a7

Please sign in to comment.