Move Dependency to Types.Dependency
This commit is contained in:
parent
61387f6eba
commit
f4bca41377
|
@ -22,8 +22,8 @@ library
|
|||
Types.Value
|
||||
Types.Function
|
||||
Types.FunctionIO
|
||||
Types.Dependency
|
||||
Types
|
||||
Dependency
|
||||
DependencyGenerator
|
||||
Evaluation.Function
|
||||
Evaluation.FunctionIO
|
||||
|
|
|
@ -22,7 +22,7 @@ import Types.Values
|
|||
import Types.Value (Valuable(..))
|
||||
import Types.Function (Function(..))
|
||||
import Types.FunctionIO (FunctionIO(..))
|
||||
import Dependency (Action(..), Dependency, makeDependency)
|
||||
import Types.Dependency (Action(..), Dependency, makeDependency)
|
||||
|
||||
import Control.Monad.State (MonadState, State, runState, put, get)
|
||||
import Control.Monad.Writer (MonadWriter, WriterT, execWriterT, tell)
|
||||
|
|
|
@ -12,4 +12,4 @@ import Types.Values
|
|||
import Types.Value
|
||||
import Types.Function
|
||||
import Types.FunctionIO
|
||||
import Dependency
|
||||
import Types.Dependency (Dependency)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
module Dependency
|
||||
module Types.Dependency
|
||||
( Action(..)
|
||||
, UToken(..)
|
||||
, Dependency(..)
|
Loading…
Reference in New Issue