1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 01:47:01 +03:00

List the exports explicitly.

This commit is contained in:
Rob Rix 2017-06-13 09:36:56 -04:00
parent 141bbec57d
commit 33624b42dd

View File

@ -1,5 +1,14 @@
{-# LANGUAGE DataKinds, GADTs, RankNTypes, ScopedTypeVariables, TypeOperators #-}
module Parser where
module Parser
( Parser
, runParser
-- Syntax parsers
, parserForLanguage
-- À la carte parsers
, markdownParser
, pythonParser
, rubyParser
) where
import qualified CMark
import Data.Record