From 44205864217f76141da2939a5c5df68bba7a8f99 Mon Sep 17 00:00:00 2001 From: "Taylor R. Campbell" Date: Wed, 9 Nov 2005 21:26:53 +0000 Subject: [PATCH] Fix character set matching in the parser test example to use the CHAR-SET directive instead of ALPHABET, which, since the introduction of Unicode support, now refers to Unicode alphabets, as the name implies, and not character sets. --- v7/src/star-parser/test-parser.scm | 44 +++++++++++++++--------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/v7/src/star-parser/test-parser.scm b/v7/src/star-parser/test-parser.scm index eb7137810..829d2f3e7 100644 --- a/v7/src/star-parser/test-parser.scm +++ b/v7/src/star-parser/test-parser.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: test-parser.scm,v 1.6 2003/02/14 18:28:35 cph Exp $ +$Id: test-parser.scm,v 1.7 2005/11/09 21:26:53 riastradh Exp $ Copyright 2001 Massachusetts Institute of Technology @@ -46,11 +46,11 @@ USA. (*parser (encapsulate vector->list (seq (noise (string "(")) - (noise (* (alphabet char-set:whitespace))) + (noise (* (char-set char-set:whitespace))) (? (seq parse-element - (* (seq (noise (+ (alphabet char-set:whitespace))) + (* (seq (noise (+ (char-set char-set:whitespace))) parse-element)))) - (noise (* (alphabet char-set:whitespace))) + (noise (* (char-set char-set:whitespace))) (noise (string ")")))))) (define parse-element @@ -63,22 +63,22 @@ USA. (*parser (map string->number (match match-num-10)))) (define parse-whitespace - (*parser (noise (+ (alphabet char-set:whitespace))))) + (*parser (noise (+ (char-set char-set:whitespace))))) (define parse-optional-whitespace - (*parser (noise (* (alphabet char-set:whitespace))))) + (*parser (noise (* (char-set char-set:whitespace))))) (define match-identifier - (let* ((initial-alphabet + (let* ((initial-char-set (char-set-union char-set:alphabetic (string->char-set "!$%&*/:<=>?^_~"))) - (subsequent-alphabet - (char-set-union initial-alphabet + (subsequent-char-set + (char-set-union initial-char-set char-set:numeric (string->char-set "+-.@")))) (*matcher - (alt (seq (alphabet initial-alphabet) - (* (alphabet subsequent-alphabet))) + (alt (seq (char-set initial-char-set) + (* (char-set subsequent-char-set))) (string "+") (string "-") (string "..."))))) @@ -98,7 +98,7 @@ USA. (alt (seq match-ureal-10 (? (alt match-angle-10 match-imaginary-10))) - (seq (alphabet (string->char-set "+-")) + (seq (char-set (string->char-set "+-")) (alt (seq match-ureal-10 (? (alt match-angle-10 match-imaginary-10 @@ -108,41 +108,41 @@ USA. (define match-angle-10 (*matcher (seq (string "@") - (? (alphabet (string->char-set "+-"))) + (? (char-set (string->char-set "+-"))) match-ureal-10))) (define match-imaginary-10 (*matcher - (seq (alphabet (string->char-set "+-")) + (seq (char-set (string->char-set "+-")) (? match-ureal-10) (string-ci "i")))) (define match-ureal-10 (*matcher - (alt (seq (+ (alphabet char-set:numeric)) + (alt (seq (+ (char-set char-set:numeric)) (? (alt (seq (string ".") - (* (alphabet char-set:numeric)) + (* (char-set char-set:numeric)) (* (string "#")) (? match-exponent-10)) (seq (string "/") - (+ (alphabet char-set:numeric)) + (+ (char-set char-set:numeric)) (* (string "#"))) (seq (+ (string "#")) (? (alt (seq (string ".") (* (string "#")) (? match-exponent-10)) (seq (string "/") - (+ (alphabet char-set:numeric)) + (+ (char-set char-set:numeric)) (* (string "#"))) match-exponent-10))) match-exponent-10))) (seq (string ".") - (+ (alphabet char-set:numeric)) + (+ (char-set char-set:numeric)) (* (string "#")) (? match-exponent-10))))) (define match-exponent-10 (*matcher - (seq (alphabet (string->char-set "esfdlESFDL")) - (? (alphabet (string->char-set "+-"))) - (+ (alphabet char-set:numeric))))) \ No newline at end of file + (seq (char-set (string->char-set "esfdlESFDL")) + (? (char-set (string->char-set "+-"))) + (+ (char-set char-set:numeric))))) \ No newline at end of file -- 2.25.1