hls-graph-1.7.0.0: src/Development/IDE/Graph/Rule.hs
{-# LANGUAGE TypeFamilies #-}
module Development.IDE.Graph.Rule(
-- * Defining builtin rules
-- | Functions and types for defining new types of Shake rules.
addRule,
RunMode(..), RunChanged(..), RunResult(..),
-- * Calling builtin rules
-- | Wrappers around calling Shake rules. In general these should be specialised to a builtin rule.
apply, apply1, applyWithoutDependency
) where
import Development.IDE.Graph.Internal.Action
import Development.IDE.Graph.Internal.Rules
import Development.IDE.Graph.Internal.Types