reexport submodule
This commit is contained in:
@@ -23,6 +23,9 @@ library
|
||||
other-modules: Data.Heap
|
||||
, Data.Pretty
|
||||
, Control.Parser
|
||||
, Core.Syntax
|
||||
, Core.Parse
|
||||
, Core.Lex
|
||||
|
||||
-- other-extensions:
|
||||
build-depends: base ^>=4.18.0.0
|
||||
|
||||
7
src/Core.hs
Normal file
7
src/Core.hs
Normal file
@@ -0,0 +1,7 @@
|
||||
module Core
|
||||
( module Core.Syntax
|
||||
)
|
||||
where
|
||||
----------------------------------------------------------------------------------
|
||||
import Core.Syntax
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
module CoreLex
|
||||
module Core.Lex
|
||||
(
|
||||
)
|
||||
where
|
||||
@@ -1,4 +1,4 @@
|
||||
module CoreParse
|
||||
module Core.Parse
|
||||
(
|
||||
)
|
||||
where
|
||||
@@ -1,5 +1,5 @@
|
||||
{-# LANGUAGE PatternSynonyms, OverloadedStrings #-}
|
||||
module Core
|
||||
module Core.Syntax
|
||||
( Expr(..)
|
||||
, pattern (:$)
|
||||
, Binding(..)
|
||||
|
||||
Reference in New Issue
Block a user