1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00

Rename Semantic.Data.Stack to Data.Stack.

This commit is contained in:
Rob Rix 2019-06-03 11:36:36 -04:00
parent 52871f3d92
commit 6dfa21bbbd
No known key found for this signature in database
GPG Key ID: F188A01508EA1CF7
3 changed files with 3 additions and 3 deletions

View File

@ -24,8 +24,8 @@ library
, Control.Effect.Readline
, Data.File
, Data.Loc
, Data.Stack
, Semantic.Core
, Semantic.Data.Stack
, Semantic.Eval
, Semantic.Eval.Concrete
, Semantic.Eval.Typecheck

View File

@ -1,5 +1,5 @@
{-# LANGUAGE DeriveTraversable #-}
module Semantic.Data.Stack
module Data.Stack
( Stack(..)
) where

View File

@ -15,11 +15,11 @@ module Semantic.Core
import Control.Applicative (Alternative (..))
import Data.Foldable (foldl')
import Data.Loc
import Data.Stack
import Data.Text.Prettyprint.Doc (Pretty (..), (<+>), vsep)
import qualified Data.Text.Prettyprint.Doc as Pretty
import qualified Data.Text.Prettyprint.Doc.Render.String as Pretty
import GHC.Stack
import Semantic.Data.Stack
import Semantic.Name
data Core