feat[bytecode]: A lot of scaffolding for setup
This commit is contained in:
parent
766528677f
commit
f9ea61d348
7 changed files with 130 additions and 0 deletions
11
src/Language/Scalie/Ast/Provenance/SourceLocation.hs
Normal file
11
src/Language/Scalie/Ast/Provenance/SourceLocation.hs
Normal file
|
@ -0,0 +1,11 @@
|
|||
{-# LANGUAGE Safe #-}
|
||||
module Language.Scalie.Ast.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