1
1
mirror of https://github.com/github/semantic.git synced 2024-12-28 17:32:05 +03:00

Add a Parser module/type.

This commit is contained in:
Rob Rix 2015-12-09 09:49:24 -05:00
parent 4a0b320640
commit f8d43dcfad
2 changed files with 7 additions and 0 deletions

View File

@ -18,6 +18,7 @@ library
, Operation
, Algorithm
, Interpreter
, Parser
, Patch
, SES
, Categorizable

6
src/Parser.hs Normal file
View File

@ -0,0 +1,6 @@
module Parser where
import Diff
import Term
type Parser = String -> IO (Term String Info)