[private] rx: allow \ between [...]

This commit is contained in:
Ben Greenman 2016-06-12 15:17:15 -04:00
parent 6f2089c29d
commit f18c207d11
2 changed files with 13 additions and 2 deletions

View File

@ -13,6 +13,13 @@
;; -- regexps, from the world
(let ([str "dont care"]) ;; from `tests/racket/contract/multi-file.rkt`
(check-equal?
(ann
(regexp-match: #rx"[/\\]([-a-z0-9.]*)[^/\\]*$" str)
(U #f (List String String)))
#f))
(let ([l "dont care"]) ;; from `morse-code-table.rkt`
(check-equal?
(ann

View File

@ -149,6 +149,7 @@
(define (unescaped-pos* str c*)
(define L (string-length str))
(define escaped? (box #f))
(define most-recent-char (box #f))
(define (have-char-at-index? c i hist)
(memv i (hash-ref hist c)))
(define h-rev
@ -157,7 +158,8 @@
(define char (unsafe-string-ref str i))
(cond
[(unbox escaped?)
(unless (eq? #\\ char)
(when (or (not (eq? #\\ char))
(eq? #\[ (unbox most-recent-char)))
(set-box! escaped? #f))
hist]
[(eq? #\\ char)
@ -173,7 +175,9 @@
[else
(let ([i* (hash-ref hist char #f)])
(if i*
(hash-set hist char (cons i i*))
(begin
(set-box! most-recent-char char)
(hash-set hist char (cons i i*)))
hist))])))
;; -- reverse all saved lists
(for/hasheq ([(c i*) (in-hash h-rev)])