Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
a9aa2ac5
Commit
a9aa2ac5
authored
Dec 24, 2015
by
Ben Gamari
🐢
Browse files
Base: Don't reexport Data.Char
It's really not used often enough to warrant special treatment
parent
ef0386c7
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/Base.hs
View file @
a9aa2ac5
...
...
@@ -3,7 +3,6 @@ module Base (
module
Control
.
Applicative
,
module
Control
.
Monad
.
Extra
,
module
Control
.
Monad
.
Reader
,
module
Data
.
Char
,
module
Data
.
Function
,
module
Data
.
List
,
module
Data
.
Maybe
,
...
...
@@ -34,7 +33,6 @@ module Base (
import
Control.Applicative
import
Control.Monad.Extra
import
Control.Monad.Reader
import
Data.Char
import
Data.Function
import
Data.List
import
Data.Maybe
...
...
src/Oracles/WindowsRoot.hs
View file @
a9aa2ac5
{-# LANGUAGE DeriveDataTypeable, GeneralizedNewtypeDeriving #-}
module
Oracles.WindowsRoot
(
windowsRoot
,
windowsRootOracle
)
where
import
Data.Char
(
isSpace
)
import
Base
newtype
WindowsRoot
=
WindowsRoot
()
...
...
src/Rules/Library.hs
View file @
a9aa2ac5
module
Rules.Library
(
buildPackageLibrary
,
cSources
,
hSources
)
where
import
Data.Char
import
Expression
hiding
(
splitPath
)
import
GHC
import
Oracles
...
...
src/Rules/Program.hs
View file @
a9aa2ac5
module
Rules.Program
(
buildProgram
)
where
import
Data.Char
import
Expression
hiding
(
splitPath
)
import
GHC
hiding
(
ghci
)
import
Oracles
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment