diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-06-25 13:41:51 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-06-25 13:41:51 +0000 |
commit | 1e66403f5fa69933cb2e62b122f04200423b0633 (patch) | |
tree | 3471b5ce452aeb38592c0547e1a7de54df7d3381 /utils | |
parent | 7a1deea7df2b58b6b66b9495a89e1e51741da6c3 (diff) | |
download | haskell-1e66403f5fa69933cb2e62b122f04200423b0633.tar.gz |
reorder the imports
Diffstat (limited to 'utils')
-rw-r--r-- | utils/ghctags/GhcTags.hs | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/utils/ghctags/GhcTags.hs b/utils/ghctags/GhcTags.hs index fe760978d0..1c7801a4c5 100644 --- a/utils/ghctags/GhcTags.hs +++ b/utils/ghctags/GhcTags.hs @@ -1,22 +1,24 @@ module Main where -import Bag -import Char -import DriverPhases ( isHaskellSrcFilename ) -import DynFlags(GhcMode, defaultDynFlags) -import ErrUtils ( printBagOfErrors ) -import FastString + import GHC +import DriverPhases ( isHaskellSrcFilename ) import HscTypes (msHsFilePath) -import IO -import List -import Maybe import Name import Outputable +import ErrUtils ( printBagOfErrors ) +import DynFlags(GhcMode, defaultDynFlags) import SrcLoc +import Bag +import Util ( handle, handleDyn ) +import FastString + import System.Environment import System.Console.GetOpt import System.Exit -import Util ( handle, handleDyn ) +import Data.Char +import System.IO +import Data.List as List +import Data.Maybe -- search for definitions of things -- we do this by parsing the source and grabbing top-level definitions |