Finishing touches

Signed-off-by: Jacob Hrbek <kreyren@rixotstudio.cz>
This commit is contained in:
Jacob Hrbek 2022-09-03 10:22:20 +02:00
parent ddef402c69
commit b6fb4e3014
Signed by: kreyren
GPG Key ID: 667F0DAFAF09BA2B
4 changed files with 8 additions and 5 deletions

@ -23,7 +23,7 @@ Which in practice might be used as:
- DNM = Do Not Merge - Usage in merge/pull requests blocks syncing the code, used to tag code that needs to be addressed before merge can happen
- PROD/PRODUCTION = Code that should be considered prior to it's usage in production environment
- TRANSLATE = Needs to be translated
- WTF = Code that is not fully understood what it is doing
** Repository-wide tags

@ -52,7 +52,7 @@
"environment"
"built-in"))
;; WTF(Krey): No fucking idea.. something with ASCII? If ASCII is supported?
;; WTF(Krey): No idea.. something with ASCII? If ASCII is supported?
(define %ascii? #f)
;; WTF(Krey)

@ -33,16 +33,16 @@
;; A makefile can contain rules, macro definitions, include lines, and comments.
;; FIXME-DOCS(Krey)
(define (parse filename)
"FIXME-DOCS"
(with-input-from-file filename _eval #:guess-encoding #t))
;; DNM-SECURITY(Krey): Check very carefully
;; FIXME-DOCS(Krey)
(define (_eval)
"FIXME-DOCS"
(let ((filenames #f)
(ignoring #f)
(commands '()))
;; FIXME-QA(Krey): `(while #t` is not robust enough, specify the logic to lesser the chance of infinite loops
(while #t
(receive (line nlines)
(read-line-handle-escaped-newline)

@ -1 +1,4 @@
Directory storing tests
NOTE-QA(Krey): Tests were ignored in the QA, decided that they should be rewritten once we finish refactor of the project