module V3.WellTypedSyntax where
open import Library
open import V3.AST public using (Type; bool; int; Boolean; true; false; PrintBoolean)
Cxt = List Type
data Var : (Γ : Cxt) (t : Type) → Set where
here : ∀ {Γ t} → Var (t ∷ Γ) t
there : ∀ {Γ t t'} → Var Γ t → Var (t' ∷ Γ) t
data Op : (dom codom : Type) → Set where
plus : Op int int
gt : Op int bool
and : Op bool bool
data Exp (Γ : Cxt) : Type → Set where
eInt : (i : ℤ) → Exp Γ int
eBool : (b : Boolean) → Exp Γ bool
eOp : ∀{t t'} (op : Op t t') (e e' : Exp Γ t) → Exp Γ t'
eCond : ∀{t} (e : Exp Γ bool) (e' e'' : Exp Γ t) → Exp Γ t
eVar : ∀{t} (x : Var Γ t) → Exp Γ t
data Decl (Γ : Cxt) (t : Type) : Set where
dInit : (e : Exp Γ t) → Decl Γ t
data Decls (Γ : Cxt) : Cxt → Set where
[] : Decls Γ Γ
_∷_ : ∀{t Γ′} (s : Decl Γ t) (ss : Decls (t ∷ Γ) Γ′) → Decls Γ Γ′
mutual
data Stm (Γ : Cxt) : Set where
sAss : ∀{t} (x : Var Γ t) (e : Exp Γ t) → Stm Γ
sWhile : ∀ (e : Exp Γ bool) (s : Stms Γ) → Stm Γ
sIfElse : ∀ (e : Exp Γ bool) (s₁ : Stms Γ) (s₂ : Stms Γ) → Stm Γ
Stms : Cxt → Set
Stms Γ = List (Stm Γ)
record Program : Set where
constructor program
field
{Γ} : Cxt
theDecls : Decls [] Γ
theStms : Stms Γ
theMain : Exp Γ int
open Program public