|
|
@ -1,4 +1,4 @@
|
|
|
|
#lang debug at-exp racket/base
|
|
|
|
#lang at-exp racket/base
|
|
|
|
(require (for-syntax racket/base "parser.rkt"))
|
|
|
|
(require (for-syntax racket/base "parser.rkt"))
|
|
|
|
(require br-parser-tools/lex
|
|
|
|
(require br-parser-tools/lex
|
|
|
|
(prefix-in : br-parser-tools/lex-sre)
|
|
|
|
(prefix-in : br-parser-tools/lex-sre)
|
|
|
@ -80,11 +80,12 @@
|
|
|
|
;; or (:: backlash escaped-double-quote) = \ + \"
|
|
|
|
;; or (:: backlash escaped-double-quote) = \ + \"
|
|
|
|
;; because escapes should be "left associative",
|
|
|
|
;; because escapes should be "left associative",
|
|
|
|
;; we forbid the second possibility
|
|
|
|
;; we forbid the second possibility
|
|
|
|
|
|
|
|
;; There are still some weird corner cases but the current tests work.
|
|
|
|
|
|
|
|
;; with single and double quotes in the mix,
|
|
|
|
|
|
|
|
;; I'm not sure how much better this can be.
|
|
|
|
(complement (:: any-string backslash escaped-double-quote any-string)))
|
|
|
|
(complement (:: any-string backslash escaped-double-quote any-string)))
|
|
|
|
double-quote) ;; end with double quote
|
|
|
|
double-quote) ;; end with double quote
|
|
|
|
(let ()
|
|
|
|
(token-LIT (unescape-double-quoted-lexeme lexeme start-pos end-pos))]
|
|
|
|
(displayln lexeme)
|
|
|
|
|
|
|
|
(token-LIT (unescape-double-quoted-lexeme lexeme start-pos end-pos)))]
|
|
|
|
|
|
|
|
;; single-quoted string follows the same pattern,
|
|
|
|
;; single-quoted string follows the same pattern,
|
|
|
|
;; but with escaped-single-quote instead of escaped-double-quote
|
|
|
|
;; but with escaped-single-quote instead of escaped-double-quote
|
|
|
|
[(:: single-quote
|
|
|
|
[(:: single-quote
|
|
|
|