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

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

View File

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

View File

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