1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 01:47:01 +03:00

Rename Semantic.Command.{Diff,Parse} to Semantic.{Diff,Parse}.

This commit is contained in:
Rob Rix 2018-04-04 15:17:01 -04:00
parent 1be579b2f8
commit 8ae61645f8
5 changed files with 5 additions and 5 deletions

View File

@ -136,11 +136,11 @@ library
-- High-level flow & operational functionality (logging, stats, etc.)
, Semantic
, Semantic.CLI
, Semantic.Command.Diff
, Semantic.Command.Parse
, Semantic.Diff
, Semantic.Distribute
, Semantic.IO
, Semantic.Log
, Semantic.Parse
, Semantic.Queue
, Semantic.Stat
, Semantic.Task

View File

@ -21,8 +21,8 @@ import Diffing.Algorithm (Diffable)
import Diffing.Interpreter
import Parsing.Parser
import Rendering.Renderer
import Semantic.Command.Parse
import Semantic.IO (NoLanguageForBlob(..))
import Semantic.Parse
import Semantic.Stat as Stat
import Semantic.Task as Task

View File

@ -1 +0,0 @@
module Semantic.Command.Diff where

1
src/Semantic/Diff.hs Normal file
View File

@ -0,0 +1 @@
module Semantic.Diff where

View File

@ -1,5 +1,5 @@
{-# LANGUAGE GADTs #-}
module Semantic.Command.Parse where
module Semantic.Parse where
import Analysis.ConstructorName (ConstructorName, constructorLabel)
import Analysis.IdentifierName (IdentifierName, identifierLabel)