|
|
|
|
|
|
|
(load "common-test.scm") |
|
|
|
(define (doit . tokens) |
|
(let ((parser (lalr-parser (expect: 0) |
|
(NUMBER COMMA NEWLINE) |
|
|
|
(lines (lines line) : (list $2) |
|
(line) : (list $1)) |
|
(line (NEWLINE) : #\newline |
|
(NUMBER NEWLINE) : $1 |
|
|
|
(COMMA NUMBER NEWLINE))))) |
|
(parser (make-lexer tokens) error-handler))) |
|
|
|
(check |
|
|
|
(doit (make-lexical-token 'NUMBER #f 1) |
|
(make-lexical-token 'NEWLINE #f #\newline)) |
|
=> '(1)) |
|
|
|
(check |
|
|
|
(doit (make-lexical-token 'COMMA #f #\,) |
|
(make-lexical-token 'NUMBER #f 1) |
|
(make-lexical-token 'NEWLINE #f #\newline)) |
|
=> '(#(line-3 #\, 1 #\newline))) |
|
|
|
(check |
|
|
|
(doit (make-lexical-token 'NUMBER #f 1) |
|
(make-lexical-token 'NEWLINE #f #\newline) |
|
(make-lexical-token 'COMMA #f #\,) |
|
(make-lexical-token 'NUMBER #f 2) |
|
(make-lexical-token 'NEWLINE #f #\newline)) |
|
=> '(#(line-3 #\, 2 #\newline))) |
|
|
|
|
|
|