summaryrefslogtreecommitdiff
path: root/src/Core/Context.idr
blob: da9c28ba80dc9ba0d7df459b0ecc9c14ea36d343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module Core.Context

import public Core.Name

-- Definition ------------------------------------------------------------------

public export
data Context : Type where
  Lin : Context
  (:<) : Context -> Name -> Context

%name Context sx, sy, sz