1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 00:42:33 +03:00

Stub in an OrderedMap type.

This commit is contained in:
Rob Rix 2015-12-11 17:04:24 -05:00
parent 75d76afeb5
commit 187cecefdb
2 changed files with 4 additions and 0 deletions

View File

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

3
src/OrderedMap.hs Normal file
View File

@ -0,0 +1,3 @@
module OrderedMap (OrderedMap) where
data OrderedMap key value = OrderedMap [(key, value)]