reexport submodule

This commit is contained in:
crumbtoo
2023-11-15 10:12:35 -07:00
parent ebda19458c
commit 86b1538d3d
5 changed files with 13 additions and 3 deletions

View File

@@ -23,6 +23,9 @@ library
other-modules: Data.Heap other-modules: Data.Heap
, Data.Pretty , Data.Pretty
, Control.Parser , Control.Parser
, Core.Syntax
, Core.Parse
, Core.Lex
-- other-extensions: -- other-extensions:
build-depends: base ^>=4.18.0.0 build-depends: base ^>=4.18.0.0

7
src/Core.hs Normal file
View File

@@ -0,0 +1,7 @@
module Core
( module Core.Syntax
)
where
----------------------------------------------------------------------------------
import Core.Syntax

View File

@@ -1,4 +1,4 @@
module CoreLex module Core.Lex
( (
) )
where where

View File

@@ -1,4 +1,4 @@
module CoreParse module Core.Parse
( (
) )
where where

View File

@@ -1,5 +1,5 @@
{-# LANGUAGE PatternSynonyms, OverloadedStrings #-} {-# LANGUAGE PatternSynonyms, OverloadedStrings #-}
module Core module Core.Syntax
( Expr(..) ( Expr(..)
, pattern (:$) , pattern (:$)
, Binding(..) , Binding(..)