Skip to content

Commit

Permalink
Changes necessary to build on GHC 8.4.3 (#3372)
Browse files Browse the repository at this point in the history
* changes necessary to build on GHC 8.4.2

* remove redundant Monoid imports

* bumps to a 8.4.3 resolver

* Updates for LTS-12

* Work around cabal/stack bug

* Update node and stack versions on appveyor

* removes spdx dependent code

* Revert "removes spdx dependent code"

This reverts commit 9432705.

* use Cabal's SPDX parsing

* use Cabal's Parsec class to parse licenses
  • Loading branch information
kritzcreek committed Aug 9, 2018
1 parent f8ca834 commit e184fca
Show file tree
Hide file tree
Showing 63 changed files with 165 additions and 200 deletions.
1 change: 0 additions & 1 deletion app/Command/Bundle.hs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
module Command.Bundle (command) where

import Data.Traversable (for)
import Data.Monoid ((<>))
import Data.Aeson (encode)
import Data.Maybe (isNothing)
import Control.Applicative
Expand Down
1 change: 0 additions & 1 deletion app/Command/Compile.hs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ module Command.Compile (command) where

import Control.Applicative
import Control.Monad
import Control.Monad.Writer.Strict
import qualified Data.Aeson as A
import Data.Bool (bool)
import qualified Data.ByteString.Lazy as B
Expand Down
1 change: 0 additions & 1 deletion app/Command/Hierarchy.hs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import Protolude (catMaybes)

import Control.Applicative (optional)
import Data.Foldable (for_)
import Data.Monoid ((<>))
import qualified Data.Text as T
import qualified Data.Text.IO as T
import Options.Applicative (Parser)
Expand Down
1 change: 0 additions & 1 deletion app/Command/Publish.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ module Command.Publish (command) where
import Control.Monad.IO.Class (liftIO)
import qualified Data.Aeson as A
import qualified Data.ByteString.Lazy.Char8 as BL
import Data.Monoid ((<>))
import Data.Time.Clock (getCurrentTime)
import Data.Version (Version(..))
import Language.PureScript.Publish
Expand Down
1 change: 0 additions & 1 deletion app/Command/REPL.hs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ import Control.Monad.Trans.State.Strict (StateT, evalStateT)
import Control.Monad.Trans.Reader (ReaderT, runReaderT)
import Data.FileEmbed (embedStringFile)
import Data.Foldable (for_)
import Data.Monoid ((<>))
import Data.String (IsString(..))
import Data.Text (Text, unpack)
import Data.Traversable (for)
Expand Down
1 change: 0 additions & 1 deletion app/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import qualified Command.Ide as Ide
import qualified Command.Publish as Publish
import qualified Command.REPL as REPL
import Data.Foldable (fold)
import Data.Monoid ((<>))
import qualified Options.Applicative as Opts
import System.Environment (getArgs)
import qualified System.IO as IO
Expand Down
7 changes: 5 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ version: '{build}'
environment:
# Keep the path as short as possible, just in case.
STACK_ROOT: c:\s
STACK_VER: 1.6.3
STACK_VER: 1.7.1
RELEASE_USER: purescript
RELEASE_REPO: purescript
# See https://github.com/commercialhaskell/stack/issues/3944, might no
# longer be necessary after we've moved to a snapshot with network >= 0.2.7.1
TMP: "c:\\tmp"
branches:
# Only build master and tagged versions, i.e. not feature branches; feature
# branches already get built after opening a pull request.
Expand All @@ -19,7 +22,7 @@ cache:
- c:\s -> appveyor/cache-buster.txt
install:
- git submodule update --init
- ps: Install-Product node 6
- ps: Install-Product node 8
- npm install -g bower

- ps: |
Expand Down
6 changes: 3 additions & 3 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,16 @@ extra-source-files:
- CONTRIBUTORS.md
- CONTRIBUTING.md
dependencies:
- aeson >=1.0 && <1.3
- aeson >=1.0 && <1.4
- aeson-better-errors >=0.8
- ansi-terminal >=0.7.1 && <0.9
- base >=4.8 && <4.11
- base >=4.8 && <4.12
- base-compat >=0.6.0
- blaze-html >=0.8.1 && <0.10
- bower-json >=1.0.0.1 && <1.1
- boxes >=0.1.4 && <0.2.0
- bytestring
- Cabal >= 2.2
- cheapskate >=0.1 && <0.2
- clock
- containers
Expand Down Expand Up @@ -70,7 +71,6 @@ dependencies:
- scientific >=0.3.4.9 && <0.4
- semigroups >=0.16.2 && <0.19
- sourcemap >=0.1.6
- spdx ==0.2.*
- split
- stm >=0.2.4.0
- stringsearch
Expand Down
2 changes: 0 additions & 2 deletions src/Language/PureScript/AST/Binders.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ module Language.PureScript.AST.Binders where

import Prelude.Compat

import Data.Semigroup

import Language.PureScript.AST.SourcePos
import Language.PureScript.AST.Literals
import Language.PureScript.Names
Expand Down
1 change: 0 additions & 1 deletion src/Language/PureScript/AST/SourcePos.hs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import Prelude.Compat

import Control.DeepSeq (NFData)
import Data.Aeson ((.=), (.:))
import Data.Monoid
import Data.Text (Text)
import GHC.Generics (Generic)
import Language.PureScript.Comments
Expand Down
145 changes: 71 additions & 74 deletions src/Language/PureScript/AST/Traversals.hs
Original file line number Diff line number Diff line change
Expand Up @@ -264,66 +264,66 @@ everythingOnValues
, CaseAlternative -> r
, DoNotationElement -> r
)
everythingOnValues (<>) f g h i j = (f', g', h', i', j')
everythingOnValues (<>.) f g h i j = (f', g', h', i', j')
where

f' :: Declaration -> r
f' d@(DataBindingGroupDeclaration ds) = foldl (<>) (f d) (fmap f' ds)
f' d@(ValueDeclaration vd) = foldl (<>) (f d) (fmap h' (valdeclBinders vd) ++ concatMap (\(GuardedExpr grd v) -> fmap k' grd ++ [g' v]) (valdeclExpression vd))
f' d@(BindingGroupDeclaration ds) = foldl (<>) (f d) (fmap (\(_, _, val) -> g' val) ds)
f' d@(TypeClassDeclaration _ _ _ _ _ ds) = foldl (<>) (f d) (fmap f' ds)
f' d@(TypeInstanceDeclaration _ _ _ _ _ _ _ (ExplicitInstance ds)) = foldl (<>) (f d) (fmap f' ds)
f' d@(BoundValueDeclaration _ b expr) = f d <> h' b <> g' expr
f' d@(DataBindingGroupDeclaration ds) = foldl (<>.) (f d) (fmap f' ds)
f' d@(ValueDeclaration vd) = foldl (<>.) (f d) (fmap h' (valdeclBinders vd) ++ concatMap (\(GuardedExpr grd v) -> fmap k' grd ++ [g' v]) (valdeclExpression vd))
f' d@(BindingGroupDeclaration ds) = foldl (<>.) (f d) (fmap (\(_, _, val) -> g' val) ds)
f' d@(TypeClassDeclaration _ _ _ _ _ ds) = foldl (<>.) (f d) (fmap f' ds)
f' d@(TypeInstanceDeclaration _ _ _ _ _ _ _ (ExplicitInstance ds)) = foldl (<>.) (f d) (fmap f' ds)
f' d@(BoundValueDeclaration _ b expr) = f d <>. h' b <>. g' expr
f' d = f d

g' :: Expr -> r
g' v@(Literal _ l) = lit (g v) g' l
g' v@(UnaryMinus _ v1) = g v <> g' v1
g' v@(BinaryNoParens op v1 v2) = g v <> g' op <> g' v1 <> g' v2
g' v@(Parens v1) = g v <> g' v1
g' v@(TypeClassDictionaryConstructorApp _ v1) = g v <> g' v1
g' v@(Accessor _ v1) = g v <> g' v1
g' v@(ObjectUpdate obj vs) = foldl (<>) (g v <> g' obj) (fmap (g' . snd) vs)
g' v@(ObjectUpdateNested obj vs) = foldl (<>) (g v <> g' obj) (fmap g' vs)
g' v@(Abs b v1) = g v <> h' b <> g' v1
g' v@(App v1 v2) = g v <> g' v1 <> g' v2
g' v@(IfThenElse v1 v2 v3) = g v <> g' v1 <> g' v2 <> g' v3
g' v@(Case vs alts) = foldl (<>) (foldl (<>) (g v) (fmap g' vs)) (fmap i' alts)
g' v@(TypedValue _ v1 _) = g v <> g' v1
g' v@(Let _ ds v1) = foldl (<>) (g v) (fmap f' ds) <> g' v1
g' v@(Do es) = foldl (<>) (g v) (fmap j' es)
g' v@(Ado es v1) = foldl (<>) (g v) (fmap j' es) <> g' v1
g' v@(PositionedValue _ _ v1) = g v <> g' v1
g' v@(UnaryMinus _ v1) = g v <>. g' v1
g' v@(BinaryNoParens op v1 v2) = g v <>. g' op <>. g' v1 <>. g' v2
g' v@(Parens v1) = g v <>. g' v1
g' v@(TypeClassDictionaryConstructorApp _ v1) = g v <>. g' v1
g' v@(Accessor _ v1) = g v <>. g' v1
g' v@(ObjectUpdate obj vs) = foldl (<>.) (g v <>. g' obj) (fmap (g' . snd) vs)
g' v@(ObjectUpdateNested obj vs) = foldl (<>.) (g v <>. g' obj) (fmap g' vs)
g' v@(Abs b v1) = g v <>. h' b <>. g' v1
g' v@(App v1 v2) = g v <>. g' v1 <>. g' v2
g' v@(IfThenElse v1 v2 v3) = g v <>. g' v1 <>. g' v2 <>. g' v3
g' v@(Case vs alts) = foldl (<>.) (foldl (<>.) (g v) (fmap g' vs)) (fmap i' alts)
g' v@(TypedValue _ v1 _) = g v <>. g' v1
g' v@(Let _ ds v1) = foldl (<>.) (g v) (fmap f' ds) <>. g' v1
g' v@(Do es) = foldl (<>.) (g v) (fmap j' es)
g' v@(Ado es v1) = foldl (<>.) (g v) (fmap j' es) <>. g' v1
g' v@(PositionedValue _ _ v1) = g v <>. g' v1
g' v = g v

h' :: Binder -> r
h' b@(LiteralBinder _ l) = lit (h b) h' l
h' b@(ConstructorBinder _ _ bs) = foldl (<>) (h b) (fmap h' bs)
h' b@(BinaryNoParensBinder b1 b2 b3) = h b <> h' b1 <> h' b2 <> h' b3
h' b@(ParensInBinder b1) = h b <> h' b1
h' b@(NamedBinder _ _ b1) = h b <> h' b1
h' b@(PositionedBinder _ _ b1) = h b <> h' b1
h' b@(TypedBinder _ b1) = h b <> h' b1
h' b@(ConstructorBinder _ _ bs) = foldl (<>.) (h b) (fmap h' bs)
h' b@(BinaryNoParensBinder b1 b2 b3) = h b <>. h' b1 <>. h' b2 <>. h' b3
h' b@(ParensInBinder b1) = h b <>. h' b1
h' b@(NamedBinder _ _ b1) = h b <>. h' b1
h' b@(PositionedBinder _ _ b1) = h b <>. h' b1
h' b@(TypedBinder _ b1) = h b <>. h' b1
h' b = h b

lit :: r -> (a -> r) -> Literal a -> r
lit r go (ArrayLiteral as) = foldl (<>) r (fmap go as)
lit r go (ObjectLiteral as) = foldl (<>) r (fmap (go . snd) as)
lit r go (ArrayLiteral as) = foldl (<>.) r (fmap go as)
lit r go (ObjectLiteral as) = foldl (<>.) r (fmap (go . snd) as)
lit r _ _ = r

i' :: CaseAlternative -> r
i' ca@(CaseAlternative bs gs) =
foldl (<>) (i ca) (fmap h' bs ++ concatMap (\(GuardedExpr grd val) -> fmap k' grd ++ [g' val]) gs)
foldl (<>.) (i ca) (fmap h' bs ++ concatMap (\(GuardedExpr grd val) -> fmap k' grd ++ [g' val]) gs)

j' :: DoNotationElement -> r
j' e@(DoNotationValue v) = j e <> g' v
j' e@(DoNotationBind b v) = j e <> h' b <> g' v
j' e@(DoNotationLet ds) = foldl (<>) (j e) (fmap f' ds)
j' e@(PositionedDoNotationElement _ _ e1) = j e <> j' e1
j' e@(DoNotationValue v) = j e <>. g' v
j' e@(DoNotationBind b v) = j e <>. h' b <>. g' v
j' e@(DoNotationLet ds) = foldl (<>.) (j e) (fmap f' ds)
j' e@(PositionedDoNotationElement _ _ e1) = j e <>. j' e1

k' :: Guard -> r
k' (ConditionGuard e) = g' e
k' (PatternGuard b e) = h' b <> g' e
k' (PatternGuard b e) = h' b <>. g' e

everythingWithContextOnValues
:: forall s r
Expand All @@ -340,79 +340,79 @@ everythingWithContextOnValues
, Binder -> r
, CaseAlternative -> r
, DoNotationElement -> r)
everythingWithContextOnValues s0 r0 (<>) f g h i j = (f'' s0, g'' s0, h'' s0, i'' s0, j'' s0)
everythingWithContextOnValues s0 r0 (<>.) f g h i j = (f'' s0, g'' s0, h'' s0, i'' s0, j'' s0)
where

f'' :: s -> Declaration -> r
f'' s d = let (s', r) = f s d in r <> f' s' d
f'' s d = let (s', r) = f s d in r <>. f' s' d

f' :: s -> Declaration -> r
f' s (DataBindingGroupDeclaration ds) = foldl (<>) r0 (fmap (f'' s) ds)
f' s (ValueDeclaration vd) = foldl (<>) r0 (fmap (h'' s) (valdeclBinders vd) ++ concatMap (\(GuardedExpr grd v) -> fmap (k' s) grd ++ [g'' s v]) (valdeclExpression vd))
f' s (BindingGroupDeclaration ds) = foldl (<>) r0 (fmap (\(_, _, val) -> g'' s val) ds)
f' s (TypeClassDeclaration _ _ _ _ _ ds) = foldl (<>) r0 (fmap (f'' s) ds)
f' s (TypeInstanceDeclaration _ _ _ _ _ _ _ (ExplicitInstance ds)) = foldl (<>) r0 (fmap (f'' s) ds)
f' s (DataBindingGroupDeclaration ds) = foldl (<>.) r0 (fmap (f'' s) ds)
f' s (ValueDeclaration vd) = foldl (<>.) r0 (fmap (h'' s) (valdeclBinders vd) ++ concatMap (\(GuardedExpr grd v) -> fmap (k' s) grd ++ [g'' s v]) (valdeclExpression vd))
f' s (BindingGroupDeclaration ds) = foldl (<>.) r0 (fmap (\(_, _, val) -> g'' s val) ds)
f' s (TypeClassDeclaration _ _ _ _ _ ds) = foldl (<>.) r0 (fmap (f'' s) ds)
f' s (TypeInstanceDeclaration _ _ _ _ _ _ _ (ExplicitInstance ds)) = foldl (<>.) r0 (fmap (f'' s) ds)
f' _ _ = r0

g'' :: s -> Expr -> r
g'' s v = let (s', r) = g s v in r <> g' s' v
g'' s v = let (s', r) = g s v in r <>. g' s' v

g' :: s -> Expr -> r
g' s (Literal _ l) = lit g'' s l
g' s (UnaryMinus _ v1) = g'' s v1
g' s (BinaryNoParens op v1 v2) = g'' s op <> g'' s v1 <> g'' s v2
g' s (BinaryNoParens op v1 v2) = g'' s op <>. g'' s v1 <>. g'' s v2
g' s (Parens v1) = g'' s v1
g' s (TypeClassDictionaryConstructorApp _ v1) = g'' s v1
g' s (Accessor _ v1) = g'' s v1
g' s (ObjectUpdate obj vs) = foldl (<>) (g'' s obj) (fmap (g'' s . snd) vs)
g' s (ObjectUpdateNested obj vs) = foldl (<>) (g'' s obj) (fmap (g'' s) vs)
g' s (Abs binder v1) = h'' s binder <> g'' s v1
g' s (App v1 v2) = g'' s v1 <> g'' s v2
g' s (IfThenElse v1 v2 v3) = g'' s v1 <> g'' s v2 <> g'' s v3
g' s (Case vs alts) = foldl (<>) (foldl (<>) r0 (fmap (g'' s) vs)) (fmap (i'' s) alts)
g' s (ObjectUpdate obj vs) = foldl (<>.) (g'' s obj) (fmap (g'' s . snd) vs)
g' s (ObjectUpdateNested obj vs) = foldl (<>.) (g'' s obj) (fmap (g'' s) vs)
g' s (Abs binder v1) = h'' s binder <>. g'' s v1
g' s (App v1 v2) = g'' s v1 <>. g'' s v2
g' s (IfThenElse v1 v2 v3) = g'' s v1 <>. g'' s v2 <>. g'' s v3
g' s (Case vs alts) = foldl (<>.) (foldl (<>.) r0 (fmap (g'' s) vs)) (fmap (i'' s) alts)
g' s (TypedValue _ v1 _) = g'' s v1
g' s (Let _ ds v1) = foldl (<>) r0 (fmap (f'' s) ds) <> g'' s v1
g' s (Do es) = foldl (<>) r0 (fmap (j'' s) es)
g' s (Ado es v1) = foldl (<>) r0 (fmap (j'' s) es) <> g'' s v1
g' s (Let _ ds v1) = foldl (<>.) r0 (fmap (f'' s) ds) <>. g'' s v1
g' s (Do es) = foldl (<>.) r0 (fmap (j'' s) es)
g' s (Ado es v1) = foldl (<>.) r0 (fmap (j'' s) es) <>. g'' s v1
g' s (PositionedValue _ _ v1) = g'' s v1
g' _ _ = r0

h'' :: s -> Binder -> r
h'' s b = let (s', r) = h s b in r <> h' s' b
h'' s b = let (s', r) = h s b in r <>. h' s' b

h' :: s -> Binder -> r
h' s (LiteralBinder _ l) = lit h'' s l
h' s (ConstructorBinder _ _ bs) = foldl (<>) r0 (fmap (h'' s) bs)
h' s (BinaryNoParensBinder b1 b2 b3) = h'' s b1 <> h'' s b2 <> h'' s b3
h' s (ConstructorBinder _ _ bs) = foldl (<>.) r0 (fmap (h'' s) bs)
h' s (BinaryNoParensBinder b1 b2 b3) = h'' s b1 <>. h'' s b2 <>. h'' s b3
h' s (ParensInBinder b) = h'' s b
h' s (NamedBinder _ _ b1) = h'' s b1
h' s (PositionedBinder _ _ b1) = h'' s b1
h' s (TypedBinder _ b1) = h'' s b1
h' _ _ = r0

lit :: (s -> a -> r) -> s -> Literal a -> r
lit go s (ArrayLiteral as) = foldl (<>) r0 (fmap (go s) as)
lit go s (ObjectLiteral as) = foldl (<>) r0 (fmap (go s . snd) as)
lit go s (ArrayLiteral as) = foldl (<>.) r0 (fmap (go s) as)
lit go s (ObjectLiteral as) = foldl (<>.) r0 (fmap (go s . snd) as)
lit _ _ _ = r0

i'' :: s -> CaseAlternative -> r
i'' s ca = let (s', r) = i s ca in r <> i' s' ca
i'' s ca = let (s', r) = i s ca in r <>. i' s' ca

i' :: s -> CaseAlternative -> r
i' s (CaseAlternative bs gs) = foldl (<>) r0 (fmap (h'' s) bs ++ concatMap (\(GuardedExpr grd val) -> fmap (k' s) grd ++ [g'' s val]) gs)
i' s (CaseAlternative bs gs) = foldl (<>.) r0 (fmap (h'' s) bs ++ concatMap (\(GuardedExpr grd val) -> fmap (k' s) grd ++ [g'' s val]) gs)

j'' :: s -> DoNotationElement -> r
j'' s e = let (s', r) = j s e in r <> j' s' e
j'' s e = let (s', r) = j s e in r <>. j' s' e

j' :: s -> DoNotationElement -> r
j' s (DoNotationValue v) = g'' s v
j' s (DoNotationBind b v) = h'' s b <> g'' s v
j' s (DoNotationLet ds) = foldl (<>) r0 (fmap (f'' s) ds)
j' s (DoNotationBind b v) = h'' s b <>. g'' s v
j' s (DoNotationLet ds) = foldl (<>.) r0 (fmap (f'' s) ds)
j' s (PositionedDoNotationElement _ _ e1) = j'' s e1

k' :: s -> Guard -> r
k' s (ConditionGuard e) = g'' s e
k' s (PatternGuard b e) = h'' s b <> g'' s e
k' s (PatternGuard b e) = h'' s b <>. g'' s e

everywhereWithContextOnValuesM
:: forall m s
Expand Down Expand Up @@ -514,9 +514,6 @@ everythingWithScope
)
everythingWithScope f g h i j = (f'', g'', h'', i'', \s -> snd . j'' s)
where
-- Avoid importing Data.Monoid and getting shadowed names above
(<>) = mappend

f'' :: S.Set ScopedIdent -> Declaration -> r
f'' s a = f s a <> f' s a

Expand Down Expand Up @@ -635,7 +632,7 @@ accumTypes f = everythingOnValues mappend forDecls forValues (const mempty) (con
forDecls (DataDeclaration _ _ _ _ dctors) = mconcat (concatMap (fmap f . snd) dctors)
forDecls (ExternDeclaration _ _ ty) = f ty
forDecls (TypeClassDeclaration _ _ _ implies _ _) = mconcat (concatMap (fmap f . constraintArgs) implies)
forDecls (TypeInstanceDeclaration _ _ _ _ cs _ tys _) = mconcat (concatMap (fmap f . constraintArgs) cs) `mappend` mconcat (fmap f tys)
forDecls (TypeInstanceDeclaration _ _ _ _ cs _ tys _) = mconcat (concatMap (fmap f . constraintArgs) cs) <> mconcat (fmap f tys)
forDecls (TypeSynonymDeclaration _ _ _ ty) = f ty
forDecls (TypeDeclaration td) = f (tydeclType td)
forDecls _ = mempty
Expand All @@ -657,16 +654,16 @@ accumKinds
accumKinds f = everythingOnValues mappend forDecls forValues (const mempty) (const mempty) (const mempty)
where
forDecls (DataDeclaration _ _ _ args dctors) =
foldMap (foldMap f . snd) args `mappend`
foldMap (foldMap f . snd) args <>
foldMap (foldMap forTypes . snd) dctors
forDecls (TypeClassDeclaration _ _ args implies _ _) =
foldMap (foldMap f . snd) args `mappend`
foldMap (foldMap f . snd) args <>
foldMap (foldMap forTypes . constraintArgs) implies
forDecls (TypeInstanceDeclaration _ _ _ _ cs _ tys _) =
foldMap (foldMap forTypes . constraintArgs) cs `mappend`
foldMap (foldMap forTypes . constraintArgs) cs <>
foldMap forTypes tys
forDecls (TypeSynonymDeclaration _ _ args ty) =
foldMap (foldMap f . snd) args `mappend`
foldMap (foldMap f . snd) args <>
forTypes ty
forDecls (TypeDeclaration td) = forTypes (tydeclType td)
forDecls (ExternDeclaration _ _ ty) = forTypes ty
Expand Down
1 change: 0 additions & 1 deletion src/Language/PureScript/CodeGen/JS.hs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import Data.List ((\\), intersect)
import qualified Data.Foldable as F
import qualified Data.Map as M
import Data.Maybe (fromMaybe, isNothing)
import Data.Monoid ((<>))
import Data.String (fromString)
import Data.Text (Text)
import qualified Data.Text as T
Expand Down
1 change: 0 additions & 1 deletion src/Language/PureScript/CodeGen/JS/Common.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module Language.PureScript.CodeGen.JS.Common where
import Prelude.Compat

import Data.Char
import Data.Monoid ((<>))
import Data.Text (Text)
import qualified Data.Text as T

Expand Down
1 change: 0 additions & 1 deletion src/Language/PureScript/CodeGen/JS/Printer.hs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import Control.PatternArrows
import qualified Control.Arrow as A

import Data.Maybe (fromMaybe)
import Data.Monoid ((<>))
import Data.Text (Text)
import qualified Data.Text as T

Expand Down
Loading

0 comments on commit e184fca

Please sign in to comment.