adding applicative import to satisfy ghcjs build of shared

This commit is contained in:
Paul Chiusano 2015-06-18 20:59:46 -04:00
parent 2baa404d7a
commit 3f4e901f12
2 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@
-- | This module is the primary interface to the Unison typechecker
module Unison.Typechecker (admissibleTypeAt, check, check', equals, isSubtype, locals, subtype, synthesize, synthesize', typeAt, wellTyped) where
import Control.Applicative
import Control.Monad
import Unison.Type (Type)
import Unison.Term (Term)

View File

@ -9,6 +9,7 @@
module Unison.Typechecker.Context (context, subtype, synthesizeClosed) where
import Control.Monad
import Control.Applicative
import Data.List
import Data.Set (Set)
import Unison.Note (Note,Noted(..))