mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-07 13:16:34 +02:00
Added TODO's
This commit is contained in:
parent
c6bd33bfe9
commit
d434cf0f73
1 changed files with 2 additions and 0 deletions
|
@ -305,10 +305,12 @@
|
||||||
;; Booleans
|
;; Booleans
|
||||||
;; Do not use add-tok below, no need to quote a bool
|
;; Do not use add-tok below, no need to quote a bool
|
||||||
((eq? #\t next-c)
|
((eq? #\t next-c)
|
||||||
|
;; TODO: read in rest of #true if it is there
|
||||||
(if all?
|
(if all?
|
||||||
(parse fp '() (cons #t toks) all? #f parens ptbl)
|
(parse fp '() (cons #t toks) all? #f parens ptbl)
|
||||||
#t))
|
#t))
|
||||||
((eq? #\f next-c)
|
((eq? #\f next-c)
|
||||||
|
;; TODO: read in rest of #false if it is there
|
||||||
(if all?
|
(if all?
|
||||||
(parse fp '() (cons #f toks) all? #f parens ptbl)
|
(parse fp '() (cons #f toks) all? #f parens ptbl)
|
||||||
#f))
|
#f))
|
||||||
|
|
Loading…
Add table
Reference in a new issue