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