File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ module Dhall.Import.Headers
1010 , toOriginHeaders
1111 ) where
1212
13- import Control.Applicative (Alternative (.. ))
13+ import Control.Applicative (Alternative (.. ), liftA2 )
1414import Control.Exception (SomeException )
1515import Control.Monad.Catch (handle , throwM )
1616import Data.Text (Text )
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ module Dhall.Marshal.Decode
136136 ) where
137137
138138
139- import Control.Applicative (empty )
139+ import Control.Applicative (empty , liftA2 )
140140import Control.Exception (Exception )
141141import Control.Monad (guard )
142142import Control.Monad.Trans.State.Strict
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ module Dhall.Parser.Combinators
2323 ) where
2424
2525
26- import Control.Applicative (Alternative (.. ))
26+ import Control.Applicative (Alternative (.. ), liftA2 )
2727import Control.Exception (Exception )
2828import Control.Monad (MonadPlus (.. ))
2929import Data.String (IsString (.. ))
Original file line number Diff line number Diff line change 88-- | Parsing Dhall expressions.
99module Dhall.Parser.Expression where
1010
11- import Control.Applicative (Alternative (.. ), optional )
11+ import Control.Applicative (Alternative (.. ), liftA2 , optional )
1212import Data.Foldable (foldl' )
1313import Data.List.NonEmpty (NonEmpty (.. ))
1414import Data.Text (Text )
You can’t perform that action at this time.
0 commit comments