aboutsummaryrefslogtreecommitdiff
path: root/src/interp/parse.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/parse.boot')
-rw-r--r--src/interp/parse.boot5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/interp/parse.boot b/src/interp/parse.boot
index f8491813..e87d8906 100644
--- a/src/interp/parse.boot
+++ b/src/interp/parse.boot
@@ -262,10 +262,6 @@ parseDropAssertions x ==
[y,:parseDropAssertions r]
x
-parseGreaterEqual: %ParseForm -> %Form
-parseGreaterEqual u ==
- parseTran ["not",[substitute("<",">=",first u),:rest u]]
-
parseLessEqual: %ParseForm -> %Form
parseLessEqual u ==
parseTran ["not",[substitute(">","<=",first u),:rest u]]
@@ -477,7 +473,6 @@ parseVCONS l ==
--% Register special parsers.
for x in [["<=", :"parseLessEqual"],_
- [">=", :"parseGreaterEqual"],_
["^=", :"parseNotEqual"],_
[":", :"parseColon"],_
["::", :"parseCoerce"],_