summaryrefslogtreecommitdiff
path: root/src/Cfe/Parse.agda
diff options
context:
space:
mode:
authorChloe Brown <chloe.brown.00@outlook.com>2021-03-27 15:04:30 +0000
committerChloe Brown <chloe.brown.00@outlook.com>2021-03-27 15:04:30 +0000
commitc67134fc5cb9e338cb397df029e5528d469771d4 (patch)
treea9668ec8e86b1e4b44e50e6b69a831d48aed87ec /src/Cfe/Parse.agda
parentb254d61d3a4084e0f2dc47cded5b4482cc31ae23 (diff)
Introduce derivations.
Diffstat (limited to 'src/Cfe/Parse.agda')
-rw-r--r--src/Cfe/Parse.agda10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Cfe/Parse.agda b/src/Cfe/Parse.agda
new file mode 100644
index 0000000..29b94fe
--- /dev/null
+++ b/src/Cfe/Parse.agda
@@ -0,0 +1,10 @@
+{-# OPTIONS --without-K --safe #-}
+
+open import Relation.Binary using (Setoid)
+
+module Cfe.Parse
+ {c ℓ} (over : Setoid c ℓ)
+ where
+
+open import Cfe.Parse.Base over public
+open import Cfe.Parse.Properties over public