reexport submodule
This commit is contained in:
@@ -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
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
|
where
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
module CoreParse
|
module Core.Parse
|
||||||
(
|
(
|
||||||
)
|
)
|
||||||
where
|
where
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
{-# LANGUAGE PatternSynonyms, OverloadedStrings #-}
|
{-# LANGUAGE PatternSynonyms, OverloadedStrings #-}
|
||||||
module Core
|
module Core.Syntax
|
||||||
( Expr(..)
|
( Expr(..)
|
||||||
, pattern (:$)
|
, pattern (:$)
|
||||||
, Binding(..)
|
, Binding(..)
|
||||||
|
|||||||
Reference in New Issue
Block a user