Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 6dfa21b

Browse files
committed
Rename Semantic.Data.Stack to Data.Stack.
1 parent 52871f3 commit 6dfa21b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

semantic-core/semantic-core.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ library
2424
, Control.Effect.Readline
2525
, Data.File
2626
, Data.Loc
27+
, Data.Stack
2728
, Semantic.Core
28-
, Semantic.Data.Stack
2929
, Semantic.Eval
3030
, Semantic.Eval.Concrete
3131
, Semantic.Eval.Typecheck
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{-# LANGUAGE DeriveTraversable #-}
2-
module Semantic.Data.Stack
2+
module Data.Stack
33
( Stack(..)
44
) where
55

semantic-core/src/Semantic/Core.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ module Semantic.Core
1515
import Control.Applicative (Alternative (..))
1616
import Data.Foldable (foldl')
1717
import Data.Loc
18+
import Data.Stack
1819
import Data.Text.Prettyprint.Doc (Pretty (..), (<+>), vsep)
1920
import qualified Data.Text.Prettyprint.Doc as Pretty
2021
import qualified Data.Text.Prettyprint.Doc.Render.String as Pretty
2122
import GHC.Stack
22-
import Semantic.Data.Stack
2323
import Semantic.Name
2424

2525
data Core

0 commit comments

Comments
 (0)