hls-graph-1.7.0.0: src/Development/IDE/Graph.hs
module Development.IDE.Graph(
shakeOptions,
Rules,
Action, action,
Key(..),
actionFinally, actionBracket, actionCatch, actionFork,
-- * Configuration
ShakeOptions(shakeAllowRedefineRules, shakeExtra),
getShakeExtra, getShakeExtraRules, newShakeExtra,
-- * Explicit parallelism
parallel,
-- * Oracle rules
ShakeValue, RuleResult,
-- * Special rules
alwaysRerun,
-- * Batching
reschedule,
-- * Actions for inspecting the keys in the database
getDirtySet,
getKeysAndVisitedAge,
) where
import Development.IDE.Graph.Database
import Development.IDE.Graph.Internal.Action
import Development.IDE.Graph.Internal.Options
import Development.IDE.Graph.Internal.Rules
import Development.IDE.Graph.Internal.Types