1
1
mirror of https://github.com/github/semantic.git synced 2024-12-21 05:41:54 +03:00
semantic/src/Syntax.hs

11 lines
151 B
Haskell
Raw Normal View History

2015-11-18 00:29:55 +03:00
module Syntax where
import Data.Map
2015-11-18 00:45:14 +03:00
data Syntax a f =
2015-11-18 03:17:42 +03:00
Leaf a
| Indexed [f]
| Fixed [f]
| Keyed (Map String f)
deriving (Functor, Show, Eq)