diff options
author | Greg Brown <greg.brown01@ed.ac.uk> | 2022-12-18 12:04:27 +0000 |
---|---|---|
committer | Greg Brown <greg.brown01@ed.ac.uk> | 2022-12-18 12:04:27 +0000 |
commit | 97f4dfe968f55e115f61ef43c37b8e7a16b6c3fd (patch) | |
tree | 60cd165d50a318ba145b13f5dac601eba046ffd4 | |
parent | b6fb551360b283c38b3ede9ef3e6d2922bd62b58 (diff) |
Remove fullBounds from Syntax.
-rw-r--r-- | src/Obs/Syntax.idr | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Obs/Syntax.idr b/src/Obs/Syntax.idr index da2f9e4..056c86a 100644 --- a/src/Obs/Syntax.idr +++ b/src/Obs/Syntax.idr @@ -26,14 +26,6 @@ record Definition where ty : Syntax tm : Syntax --- Operations ------------------------------------------------------------------ - -fullBounds : Syntax -> Bounds -fullBounds (Var x str) = x -fullBounds (Sort x s) = x -fullBounds (Top x) = x -fullBounds (Point x) = x - -- Pretty Print ---------------------------------------------------------------- export |