mirror of https://github.com/zachjs/sv2v.git
remove unneeded imports
This commit is contained in:
parent
c262324a36
commit
b8d512e31f
|
|
@ -6,7 +6,6 @@
|
|||
|
||||
module Convert.Interface (convert) where
|
||||
|
||||
import Data.List (lookup)
|
||||
import Data.Maybe (fromJust, mapMaybe)
|
||||
import Control.Monad.Writer
|
||||
import qualified Data.Map.Strict as Map
|
||||
|
|
|
|||
|
|
@ -17,8 +17,7 @@ module Language.SystemVerilog.AST.ModuleItem
|
|||
) where
|
||||
|
||||
import Data.List (intercalate)
|
||||
import Data.Maybe (maybe, fromJust, isJust)
|
||||
import Data.Either (either)
|
||||
import Data.Maybe (fromJust, isJust)
|
||||
import Text.Printf (printf)
|
||||
|
||||
import Language.SystemVerilog.AST.ShowHelp
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ module Language.SystemVerilog.Parser.Preprocess
|
|||
import Control.Monad.Except
|
||||
import Control.Monad.State
|
||||
import Data.Char (ord)
|
||||
import Data.List (span, dropWhileEnd, splitAt, tails, isPrefixOf, findIndex)
|
||||
import Data.List (dropWhileEnd, tails, isPrefixOf, findIndex)
|
||||
import Data.Maybe (isJust, fromJust)
|
||||
import System.Directory (findFile)
|
||||
import System.FilePath (dropFileName)
|
||||
|
|
|
|||
Loading…
Reference in New Issue