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