blob: 29b94feb0fc7283f3d774495ea628c436e16132d (
plain)
1
2
3
4
5
6
7
8
9
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
|