aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2012-05-05 17:24:06 +0000
committerdos-reis <gdr@axiomatics.org>2012-05-05 17:24:06 +0000
commit1dbbbe925423f63ad24be607081ced422eed5181 (patch)
treeb5d15e69130186afd39a53be8c9c3cef2bafc756 /src
parent469b8da35a7129936182f57a8d989519b382874b (diff)
downloadopen-axiom-1dbbbe925423f63ad24be607081ced422eed5181.tar.gz
* interp/preparse.lisp (ADDCLOSE): Move to spad-parser.boot.
Renamed addClose. (ESCAPED): Move to spad-parser.boot. Renamed escaped?. (INFIXTOK): Move spad-parser.boot. Renamed infixToken?.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog7
-rw-r--r--src/interp/preparse.lisp23
-rw-r--r--src/interp/spad-parser.boot18
3 files changed, 30 insertions, 18 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6d1753f5..7167c7b1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,12 @@
2012-05-05 Gabriel Dos Reis <gdr@cs.tamu.edu>
+ * interp/preparse.lisp (ADDCLOSE): Move to spad-parser.boot.
+ Renamed addClose.
+ (ESCAPED): Move to spad-parser.boot. Renamed escaped?.
+ (INFIXTOK): Move spad-parser.boot. Renamed infixToken?.
+
+2012-05-05 Gabriel Dos Reis <gdr@cs.tamu.edu>
+
* interp/clam.boot (HGETandCount): Remove as unused.
(clearHashReferenceCounts): Likewise.
(remHashEntriesWithCount): Likewise.
diff --git a/src/interp/preparse.lisp b/src/interp/preparse.lisp
index 8741a490..5b0e6193 100644
--- a/src/interp/preparse.lisp
+++ b/src/interp/preparse.lisp
@@ -103,7 +103,7 @@
(SLOC -1) (CONTINUE NIL) (PARENLEV 0) (NCOMBLOCK ())
(LINES ()) (LOCS ()) (NUMS ()) functor )
READLOOP (DCQ (NUM . A) (preparseReadLine LineList))
- (cond ((atEndOfUnit A)
+ (cond ((|atEndOfUnit?| A)
(PREPARSE-ECHO LineList)
(COND ((NULL LINES) (RETURN NIL))
(NCOMBLOCK
@@ -128,7 +128,7 @@
(setq CPARSYM (OR (position #\) A :start I ) L))
(setq N (MIN STRSYM COMSYM NCOMSYM OPARSYM CPARSYM))
(cond ((= N L) (GO NOCOMS))
- ((ESCAPED A N))
+ ((|escaped?| A N))
((= N STRSYM) (setq INSTRING (NOT INSTRING)))
(INSTRING)
((= N COMSYM) (setq A (subseq A 0 N)) (GO NOCOMS)) ; discard trailing comment
@@ -331,10 +331,6 @@
(format out-stream "~&;~A~%" X)))
(setq $EchoLineStack ()))
-(defun ESCAPED (STR N) (and (> N 0) (EQ (CHAR STR (1- N)) #\_)))
-
-(defun atEndOfUnit (X) (NULL (STRINGP X)) )
-
(defun PARSEPILES (LOCS LINES)
"Add parens and semis to lines to aid parsing."
(mapl #'add-parens-and-semis-to-line
@@ -373,10 +369,10 @@
(cond
((and (eq next-column start-column)
(rplaca nlocs (- (car nlocs)))
- (not (infixtok next-line)))
+ (not (|infixToken?| next-line)))
(setq next-lines (|drop| (1- i) slines))
(rplaca next-lines
- (addclose (car next-lines) #\;))
+ (|addClose| (car next-lines) #\;))
(setq count (1+ count))))))))
(cdr slines) (cdr slocs)))
(if (> count 0)
@@ -384,13 +380,4 @@
(setf (char (car slines) (1- (nonblankloc (car slines))))
#\( )
(setq slines (|drop| (1- i) slines))
- (rplaca slines (addclose (car slines) #\) ))))))))
-
-(defun INFIXTOK (S) (MEMBER (STRING2ID-N S 1) '(|then| |else|) :test #'eq))
-
-
-(defun ADDCLOSE (LINE CHAR)
- (cond ((char= (FETCHCHAR LINE (MAXINDEX LINE)) #\; )
- (SETF (ELT LINE (MAXINDEX LINE)) CHAR)
- (if (char= CHAR #\;) LINE (suffix #\; LINE)))
- ((suffix char LINE))))
+ (rplaca slines (|addClose| (car slines) #\) ))))))))
diff --git a/src/interp/spad-parser.boot b/src/interp/spad-parser.boot
index 197bd921..edf0cac0 100644
--- a/src/interp/spad-parser.boot
+++ b/src/interp/spad-parser.boot
@@ -47,6 +47,24 @@ import parse
namespace BOOT
--%
+
+addClose(line,ch) ==
+ FETCHCHAR(line,maxIndex line) = char ";" =>
+ ch = char ";" => line
+ line.(maxIndex line) := ch
+ SUFFIX(char ";",line)
+ SUFFIX(ch,line)
+
+escaped?(s,n) ==
+ n > 0 and FETCHCHAR(s,n-1) = char "__"
+
+infixToken? s ==
+ STRING2ID_-N(s,1) in '(_then _else)
+
+atEndOfUnit? x ==
+ not string? x
+
+--%
macro compulsorySyntax s ==
s or SPAD__SYNTAX__ERROR()