Add member-record system for storing highlights from various passes.
This commit is contained in:
parent
a716b0776f
commit
968fc95e17
2 changed files with 15 additions and 0 deletions
|
@ -36,6 +36,13 @@
|
|||
(chicken io)
|
||||
member2-record)
|
||||
|
||||
;; Returns a list of parsed lines
|
||||
(define (parse-member-lines source)
|
||||
(let loop ((lines source)
|
||||
(result '())
|
||||
(line-number 1))
|
||||
#f))
|
||||
|
||||
;; Loads member file source. Performs passes 0 and 1 on each line
|
||||
;; returning parsed source. Parsed source is a list of lists
|
||||
;; containing '(key value line-number) information. Leading and
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue