refactor[core]: Ast
module is now Core
This commit is contained in:
parent
13c3e4d007
commit
45c02e7e54
10 changed files with 24 additions and 24 deletions
11
src/Language/Scalie/Core/Provenance/SourceLocation.hs
Normal file
11
src/Language/Scalie/Core/Provenance/SourceLocation.hs
Normal file
|
@ -0,0 +1,11 @@
|
|||
{-# LANGUAGE Safe #-}
|
||||
module Language.Scalie.Core.Provenance.SourceLocation (SourceLocation(..)) where
|
||||
import Data.Kind (Type)
|
||||
import Text.Show (Show)
|
||||
import Text.Read (Read)
|
||||
import Data.Eq (Eq)
|
||||
|
||||
type SourceLocation :: Type
|
||||
data SourceLocation
|
||||
= Synthesized
|
||||
deriving stock (Show, Read, Eq)
|
Loading…
Add table
Add a link
Reference in a new issue