Added detailed info for browse

Rebasing 5 commits:
Some cleanup
Loads info from dependent module if name is only exported
Minor fix
Fixed operator to work with -d
Drops foralls from function type
This commit is contained in:
mvoidex
2013-02-23 12:51:55 +04:00
committed by Kazu Yamamoto
parent 2cced9b4bf
commit 66a61b249f
3 changed files with 69 additions and 5 deletions

View File

@@ -9,6 +9,7 @@ data Options = Options {
, hlintOpts :: [String]
, ghcOpts :: [String]
, operators :: Bool
, detailed :: Bool
, expandSplice :: Bool
, sandbox :: Maybe String
}
@@ -19,6 +20,7 @@ defaultOptions = Options {
, hlintOpts = []
, ghcOpts = []
, operators = False
, detailed = False
, expandSplice = False
, sandbox = Nothing
}