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
e8f7ac57
Commit
e8f7ac57
authored
Oct 08, 2004
by
simonmar
Browse files
[project @ 2004-10-08 14:13:27 by simonmar]
Comments only
parent
32836fa7
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/compiler/compMan/CompManager.lhs
View file @
e8f7ac57
...
...
@@ -9,19 +9,19 @@ module CompManager (
CmState, -- abstract
cmInit, -- :: GhciMode ->
DynFlags ->
IO CmState
cmInit, -- :: GhciMode -> IO CmState
cmDepAnal, -- :: CmState ->
DynFlags ->
[FilePath] -> IO ModuleGraph
cmDepAnal, -- :: CmState -> [FilePath] -> IO ModuleGraph
cmLoadModules, -- :: CmState ->
DynFlags ->
ModuleGraph
cmLoadModules, -- :: CmState -> ModuleGraph
-- -> IO (CmState, Bool, [String])
cmUnload, -- :: CmState ->
DynFlags ->
IO CmState
cmUnload, -- :: CmState -> IO CmState
#ifdef GHCI
cmModuleIsInterpreted, -- :: CmState -> String -> IO Bool
cmSetContext, -- :: CmState ->
DynFlags ->
[String] -> [String] -> IO CmState
cmSetContext, -- :: CmState -> [String] -> [String] -> IO CmState
cmGetContext, -- :: CmState -> IO ([String],[String])
cmGetInfo, -- :: CmState -> String -> IO (CmState, [(TyThing,Fixity)])
...
...
@@ -29,22 +29,16 @@ module CompManager (
cmBrowseModule, -- :: CmState -> IO [TyThing]
CmRunResult(..),
cmRunStmt, -- :: CmState -> DynFlags -> String
-- -> IO (CmState, CmRunResult)
cmRunStmt, -- :: CmState -> String -> IO (CmState, CmRunResult)
cmTypeOfExpr, -- :: CmState -> DynFlags -> String
-- -> IO (CmState, Maybe String)
cmKindOfType, -- :: CmState -> DynFlags -> String
-- -> IO (CmState, Maybe String)
cmTypeOfName, -- :: CmState -> Name -> IO (Maybe String)
cmTypeOfExpr, -- :: CmState -> String -> IO (CmState, Maybe String)
cmKindOfType, -- :: CmState -> String -> IO (CmState, Maybe String)
cmTypeOfName, -- :: CmState -> Name -> IO (Maybe String)
HValue,
cmCompileExpr, -- :: CmState -> DynFlags -> String
-- -> IO (CmState, Maybe HValue)
cmCompileExpr, -- :: CmState -> String -> IO (CmState, Maybe HValue)
cmGetModInfo
,
-- :: CmState -> (ModuleGraph, HomePackageTable)
cmGetModInfo -- :: CmState -> (ModuleGraph, HomePackageTable)
cmSetDFlags,
cmGetBindings, -- :: CmState -> [TyThing]
...
...
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