Skip to content

Commit f7a9d21

Browse files
committed
Switch dependency: wl-pprint => ansi-wl-pprint
1 parent c8a7c9b commit f7a9d21

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

language-ecmascript.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Library
3838
base >= 4 && < 5,
3939
mtl >= 1 && < 3,
4040
parsec > 3 && < 3.2.0,
41-
wl-pprint >= 1.2 && < 2,
41+
ansi-wl-pprint >= 0.6 && < 1,
4242
containers == 0.*,
4343
uniplate >= 1.6 && <1.7,
4444
data-default-class >= 0.0.1 && < 0.2,
@@ -82,7 +82,7 @@ Test-Suite test
8282
base >= 4 && < 5,
8383
mtl >= 1 && < 3,
8484
parsec >= 3 && < 3.2.0,
85-
wl-pprint >= 1.2 && < 2,
85+
ansi-wl-pprint >= 0.6 && < 1,
8686
containers == 0.*,
8787
directory >= 1.2 && < 1.4,
8888
filepath >= 1.3 && < 1.5,

src/Language/ECMAScript3/PrettyPrint.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ module Language.ECMAScript3.PrettyPrint (Pretty (..)
1010
,unsafeInExprStmt
1111
) where
1212

13-
import qualified Text.PrettyPrint.Leijen as Pretty
14-
import Text.PrettyPrint.Leijen hiding (Pretty, parens)
13+
import qualified Text.PrettyPrint.ANSI.Leijen as Pretty
14+
import Text.PrettyPrint.ANSI.Leijen hiding (Pretty, parens)
1515
import Language.ECMAScript3.Syntax
1616
import Prelude hiding (maybe, id)
1717
import qualified Prelude

0 commit comments

Comments
 (0)