blob: abeeabefb4d518d561f7f1216c2daeece02c9664 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
;
; Table generated from the file string.l by SILex 1.0
;
(define string-tables
(vector
'all
(lambda (yycontinue yygetc yyungetc)
(lambda (yytext yyline yycolumn yyoffset)
(make-tok eof-tok yytext yyline yycolumn)
))
(lambda (yycontinue yygetc yyungetc)
(lambda (yytext yyline yycolumn yyoffset)
(begin
(display "Error: Invalid token.")
(newline)
'error)
))
(vector
#t
(lambda (yycontinue yygetc yyungetc)
(lambda (yytext yyline yycolumn yyoffset)
(make-tok doublequote-tok yytext yyline yycolumn)
))
#t
(lambda (yycontinue yygetc yyungetc)
(lambda (yytext yyline yycolumn yyoffset)
(parse-spec-char yytext yyline yycolumn)
))
#t
(lambda (yycontinue yygetc yyungetc)
(lambda (yytext yyline yycolumn yyoffset)
(parse-digits-char yytext yyline yycolumn)
))
#t
(lambda (yycontinue yygetc yyungetc)
(lambda (yytext yyline yycolumn yyoffset)
(parse-digits-char yytext yyline yycolumn)
))
#t
(lambda (yycontinue yygetc yyungetc)
(lambda (yytext yyline yycolumn yyoffset)
(parse-quoted-char yytext yyline yycolumn)
))
#t
(lambda (yycontinue yygetc yyungetc)
(lambda (yytext yyline yycolumn yyoffset)
(parse-ordinary-char yytext yyline yycolumn)
)))
'tagged-chars-lists
0
0
'#((((#f #\") . 3) ((#f #\\) . 2) ((#t #\" #\\) . 1))
()
(((#f #\n) . 7)
((#f #\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9) . 6)
((#f #\-) . 5)
((#t #\- #\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9 #\n) . 4))
()
()
(((#f #\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9) . 8))
(((#f #\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9) . 9))
()
(((#f #\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9) . 8))
(((#f #\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9) . 9)))
'#((#f . #f) (5 . 5) (5 . 5) (0 . 0) (4 . 4) (4 . 4) (2 . 2)
(1 . 1) (3 . 3) (2 . 2))))
|