notes and fixup raw
This commit is contained in:
parent
31a7d6549e
commit
f01c2e5989
|
@ -57,6 +57,7 @@ TODO No set! (use data-structure mutation and :=)
|
|||
|
||||
(def (var x) 5)
|
||||
{x := 6}
|
||||
{x ← 6}
|
||||
|
||||
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:
|
||||
|
||||
λ.(+ $0 $1)
|
||||
λ.(+ $.0 $.1)
|
||||
|
||||
TODO Don't use English in exceptions and have more structured exns
|
||||
[demo on raco/pkg]
|
||||
|
|
|
@ -1,13 +1,26 @@
|
|||
#lang racket/base
|
||||
(require racket/match)
|
||||
|
||||
(define (syntax-strings->input-port name ss)
|
||||
(define (syntax-strings->input-port name first-ss)
|
||||
(define line 1)
|
||||
(define col 0)
|
||||
(define pos 1)
|
||||
(define current-idx #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)
|
||||
(cond
|
||||
|
@ -15,12 +28,7 @@
|
|||
(match next-ss
|
||||
['() eof]
|
||||
[(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!)
|
||||
(read-in bs)])]
|
||||
[(< current-idx (bytes-length current-bs))
|
||||
(define how-many
|
||||
|
@ -32,6 +40,8 @@
|
|||
(set! current-idx end)
|
||||
(set! col (+ col how-many))
|
||||
(set! pos (+ pos how-many))
|
||||
(unless (< current-idx (bytes-length current-bs))
|
||||
(consume-ss!))
|
||||
how-many]
|
||||
[else
|
||||
(set! current-bs #f)
|
||||
|
|
|
@ -156,3 +156,5 @@
|
|||
x)
|
||||
(module+ test
|
||||
v64)
|
||||
|
||||
;; (def [stx #%posn] (layout x y))
|
||||
|
|
Loading…
Reference in New Issue
Block a user