Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gargantext-ihaskell
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
gargantext-ihaskell
Commits
7d5ac39e
Commit
7d5ac39e
authored
Feb 16, 2014
by
Andrew Gibiansky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #193 from PierreR/master
Fix #192: compilation failure with classy-prelude 0.8
parents
86db7eff
2c2249e6
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
65 additions
and
65 deletions
+65
-65
Completion.hs
src/IHaskell/Eval/Completion.hs
+8
-8
Evaluate.hs
src/IHaskell/Eval/Evaluate.hs
+14
-14
Hoogle.hs
src/IHaskell/Eval/Hoogle.hs
+23
-23
Parser.hs
src/IHaskell/Eval/Parser.hs
+8
-8
Main.hs
src/Main.hs
+12
-12
No files found.
src/IHaskell/Eval/Completion.hs
View file @
7d5ac39e
...
...
@@ -11,7 +11,7 @@ This has a limited amount of context sensitivity. It distinguishes between four
-}
module
IHaskell.Eval.Completion
(
complete
,
completionTarget
,
completionType
,
CompletionType
(
..
))
where
import
ClassyPrelude
hiding
(
liftIO
)
import
ClassyPrelude
hiding
(
init
,
last
,
head
,
liftIO
)
--import Prelude
import
Control.Applicative
((
<$>
))
...
...
src/IHaskell/Eval/Evaluate.hs
View file @
7d5ac39e
...
...
@@ -9,7 +9,7 @@ module IHaskell.Eval.Evaluate (
interpret
,
evaluate
,
Interpreter
,
liftIO
,
typeCleaner
,
globalImports
)
where
import
ClassyPrelude
hiding
(
liftIO
,
hGetContents
,
try
)
import
ClassyPrelude
hiding
(
init
,
last
,
liftIO
,
head
,
hGetContents
,
tail
,
try
)
import
Control.Concurrent
(
forkIO
,
threadDelay
)
import
Prelude
(
putChar
,
head
,
tail
,
last
,
init
,
(
!!
))
import
Data.List.Utils
...
...
src/IHaskell/Eval/Hoogle.hs
View file @
7d5ac39e
...
...
@@ -7,7 +7,7 @@ module IHaskell.Eval.Hoogle (
HoogleResult
)
where
import
ClassyPrelude
hiding
(
span
,
div
)
import
ClassyPrelude
hiding
(
last
,
span
,
div
)
import
Text.Printf
import
Network.HTTP
import
Data.Aeson
...
...
src/IHaskell/Eval/Parser.hs
View file @
7d5ac39e
...
...
@@ -15,7 +15,7 @@ module IHaskell.Eval.Parser (
)
where
-- Hide 'unlines' to use our own 'joinLines' instead.
import
ClassyPrelude
hiding
(
liftIO
,
unlines
)
import
ClassyPrelude
hiding
(
head
,
tail
,
liftIO
,
unlines
)
import
Data.List
(
findIndex
,
maximumBy
,
maximum
,
inits
)
import
Data.String.Utils
(
startswith
,
strip
,
split
)
...
...
src/Main.hs
View file @
7d5ac39e
...
...
@@ -4,7 +4,7 @@
module
Main
where
-- Prelude imports.
import
ClassyPrelude
hiding
(
liftIO
)
import
ClassyPrelude
hiding
(
l
ast
,
l
iftIO
)
import
Prelude
(
last
,
read
)
-- Standard library imports.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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