1
1
mirror of https://github.com/github/semantic.git synced 2024-12-22 22:31:36 +03:00

Don’t export AssignmentF or its constructors.

This commit is contained in:
Rob Rix 2017-04-07 15:00:44 -04:00
parent a43ff988ae
commit e3140636b7

View File

@ -1,5 +1,15 @@
{-# LANGUAGE GADTs #-}
module Data.Syntax.Assignment where
module Data.Syntax.Assignment
( Assignment
, rule
, content
, children
, Rose(..)
, Node(..)
, AST
, assignAll
, runAssignment
) where
import Control.Monad.Free.Freer
import Prologue hiding (Alt)