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.boot6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/interp/parse.boot b/src/interp/parse.boot
index 92c040bd..f8491813 100644
--- a/src/interp/parse.boot
+++ b/src/interp/parse.boot
@@ -262,11 +262,6 @@ parseDropAssertions x ==
[y,:parseDropAssertions r]
x
-parseGreaterThan: %ParseForm -> %Form
-parseGreaterThan t ==
- t isnt [op,x,y] => systemErrorHere ["parseGreaterThan",t]
- [substitute("<",">",op),parseTran y,parseTran x]
-
parseGreaterEqual: %ParseForm -> %Form
parseGreaterEqual u ==
parseTran ["not",[substitute("<",">=",first u),:rest u]]
@@ -482,7 +477,6 @@ parseVCONS l ==
--% Register special parsers.
for x in [["<=", :"parseLessEqual"],_
- [">", :"parseGreaterThan"],_
[">=", :"parseGreaterEqual"],_
["^=", :"parseNotEqual"],_
[":", :"parseColon"],_