rename predicate

pull/10/head
Matthew Butterick 7 years ago
parent 2f1a2b4520
commit f955987e2b

@ -4,14 +4,14 @@
(module+ test (module+ test
(require rackunit)) (require rackunit))
(define (token? x) (define (jsonic-token? x)
(or (eof-object? x) (string? x) (token-struct? x))) (or (eof-object? x) (string? x) (token-struct? x)))
(module+ test (module+ test
(check-true (token? eof)) (check-true (jsonic-token? eof))
(check-true (token? "a string")) (check-true (jsonic-token? "a string"))
(check-true (token? (token 'A-TOKEN-STRUCT "hi"))) (check-true (jsonic-token? (token 'A-TOKEN-STRUCT "hi")))
(check-false (token? 42))) (check-false (jsonic-token? 42)))
(define (make-tokenizer port) (define (make-tokenizer port)
(port-count-lines! port) (port-count-lines! port)
@ -35,8 +35,9 @@
(pos lexeme-start)))])) (pos lexeme-start)))]))
(jsonic-lexer port)) (jsonic-lexer port))
next-token) next-token)
(provide (contract-out (provide
[make-tokenizer (input-port? . -> . (-> token?))])) (contract-out
[make-tokenizer (input-port? . -> . (-> jsonic-token?))]))
(module+ test (module+ test
(check-equal? (check-equal?

Loading…
Cancel
Save