Rename module ShellEscape → ShellParse

This commit is contained in:
Nikolay Yakimov 2015-12-20 08:26:49 +03:00
parent 057f6fba10
commit c3cf416097
4 changed files with 6 additions and 6 deletions

View File

@ -192,7 +192,7 @@ Executable ghc-mod
, GHCMod.Options.Commands
, GHCMod.Version
, GHCMod.Options.DocUtils
, GHCMod.Options.ShellEscape
, GHCMod.Options.ShellParse
GHC-Options: -Wall -fno-warn-deprecations -threaded
Default-Extensions: ConstraintKinds, FlexibleContexts
HS-Source-Dirs: src
@ -268,7 +268,7 @@ Test-Suite spec
PathsAndFilesSpec
HomeModuleGraphSpec
FileMappingSpec
ShellEscapeSpec
ShellParseSpec
Build-Depends: hspec >= 2.0.0
if impl(ghc == 7.4.*)

View File

@ -27,7 +27,7 @@ import Control.Arrow
import GHCMod.Options.Commands
import GHCMod.Version
import GHCMod.Options.DocUtils
import GHCMod.Options.ShellEscape
import GHCMod.Options.ShellParse
parseArgs :: IO (Options, GhcModCommands)
parseArgs =

View File

@ -13,7 +13,7 @@
--
-- You should have received a copy of the GNU Affero General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
module GHCMod.Options.ShellEscape (parseCmdLine) where
module GHCMod.Options.ShellParse (parseCmdLine) where
import Data.Char
import Data.Maybe

View File

@ -1,7 +1,7 @@
module ShellEscapeSpec where
module ShellParseSpec where
import GHCMod.Options.ShellEscape
import GHCMod.Options.ShellParse
import Test.Hspec