notes and fixup raw

This commit is contained in:
Jay McCarthy 2015-11-20 11:56:09 -05:00
parent 31a7d6549e
commit f01c2e5989
3 changed files with 22 additions and 9 deletions

View File

@ -57,6 +57,7 @@ TODO No set! (use data-structure mutation and :=)
(def (var x) 5) (def (var x) 5)
{x := 6} {x := 6}
{x ← 6}
TODO No effects or expressions at top-level (controversial, mf says wrong) [set-once!] TODO No effects or expressions at top-level (controversial, mf says wrong) [set-once!]
@ -157,7 +158,7 @@ TODO Remove multiple values?
TODO Rocket-strength super cut: TODO Rocket-strength super cut:
λ.(+ $0 $1) λ.(+ $.0 $.1)
TODO Don't use English in exceptions and have more structured exns TODO Don't use English in exceptions and have more structured exns
[demo on raco/pkg] [demo on raco/pkg]

View File

@ -1,13 +1,26 @@
#lang racket/base #lang racket/base
(require racket/match) (require racket/match)
(define (syntax-strings->input-port name ss) (define (syntax-strings->input-port name first-ss)
(define line 1) (define line 1)
(define col 0) (define col 0)
(define pos 1) (define pos 1)
(define current-idx #f) (define current-idx #f)
(define current-bs #f) (define current-bs #f)
(define next-ss ss) (define next-ss first-ss)
(define (consume-ss!)
(match next-ss
['() (void)]
[(cons ss more-ss)
(set! line (syntax-line ss))
(set! col (syntax-column ss))
(set! pos (syntax-position ss))
(set! current-bs (string->bytes/utf-8 (syntax->datum ss)))
(set! current-idx 0)
(set! next-ss more-ss)]))
(consume-ss!)
(define (read-in bs) (define (read-in bs)
(cond (cond
@ -15,12 +28,7 @@
(match next-ss (match next-ss
['() eof] ['() eof]
[(cons ss more-ss) [(cons ss more-ss)
(set! line (syntax-line ss)) (consume-ss!)
(set! col (syntax-column ss))
(set! pos (syntax-position ss))
(set! current-bs (string->bytes/utf-8 (syntax->datum ss)))
(set! current-idx 0)
(set! next-ss more-ss)
(read-in bs)])] (read-in bs)])]
[(< current-idx (bytes-length current-bs)) [(< current-idx (bytes-length current-bs))
(define how-many (define how-many
@ -32,6 +40,8 @@
(set! current-idx end) (set! current-idx end)
(set! col (+ col how-many)) (set! col (+ col how-many))
(set! pos (+ pos how-many)) (set! pos (+ pos how-many))
(unless (< current-idx (bytes-length current-bs))
(consume-ss!))
how-many] how-many]
[else [else
(set! current-bs #f) (set! current-bs #f)

View File

@ -156,3 +156,5 @@
x) x)
(module+ test (module+ test
v64) v64)
;; (def [stx #%posn] (layout x y))