1
1
mirror of https://github.com/github/semantic.git synced 2024-12-19 12:51:52 +03:00

Re-export the Parsers module.

This commit is contained in:
Rob Rix 2017-08-06 11:26:44 -04:00
parent c874c3ac58
commit 5dfc165699

View File

@ -68,7 +68,6 @@ module Data.Syntax.Assignment
, nodeLocation , nodeLocation
-- Combinators -- Combinators
, Alternative(..) , Alternative(..)
, optional
, MonadError(..) , MonadError(..)
, location , location
, project , project
@ -89,6 +88,7 @@ module Data.Syntax.Assignment
-- Implementation details (for testing) -- Implementation details (for testing)
, State(..) , State(..)
, makeState , makeState
, module Parsers
) where ) where
import Control.Arrow ((&&&)) import Control.Arrow ((&&&))
@ -117,6 +117,7 @@ import GHC.Stack
import qualified Info import qualified Info
import Prelude hiding (head, until) import Prelude hiding (head, until)
import System.Console.ANSI import System.Console.ANSI
import Text.Parser.Combinators as Parsers
import Text.Parser.TreeSitter.Language import Text.Parser.TreeSitter.Language
-- | Assignment from an AST with some set of 'symbol's onto some other value. -- | Assignment from an AST with some set of 'symbol's onto some other value.