aboutsummaryrefslogtreecommitdiff
path: root/module/c/cpp-util.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/c/cpp-util.scm')
-rw-r--r--module/c/cpp-util.scm12
1 files changed, 6 insertions, 6 deletions
diff --git a/module/c/cpp-util.scm b/module/c/cpp-util.scm
index 7969ccd5..3ea06505 100644
--- a/module/c/cpp-util.scm
+++ b/module/c/cpp-util.scm
@@ -35,7 +35,7 @@
;; - tokens until a newline token is met
;; - (potentially the newline token) and the remaining tokens
(define (tokens-until-eol tokens)
- (typecheck tokens (list-of lexeme?))
+ ;; (typecheck tokens (list-of lexeme?))
(break newline-token? tokens))
;; call predicate with the remaining token stream, until we run out of token, or
@@ -74,22 +74,22 @@
;; Drop leading whitespace tokens
(define (drop-whitespace tokens)
- (typecheck tokens (list-of lexeme?))
+ ;; (typecheck tokens (list-of lexeme?))
(drop-while whitespace-token? tokens))
(define (drop-whitespace/line tokens)
- (typecheck tokens (list-of lexeme?))
+ ;; (typecheck tokens (list-of lexeme?))
(drop-while (lambda (t)
(and (whitespace-token? t)
(not (newline-token? t))))
tokens))
(define (drop-whitespace-right tokens)
- (typecheck tokens (list-of lexeme?))
+ ;; (typecheck tokens (list-of lexeme?))
(-> tokens reverse drop-whitespace reverse))
(define (drop-whitespace-both tokens)
- (typecheck tokens (list-of lexeme?))
+ ;; (typecheck tokens (list-of lexeme?))
(-> tokens
drop-whitespace
drop-whitespace-right))
@@ -103,7 +103,7 @@
;; "( 2, 4 )"
;; 6.10.3.2 p 2
(define (cleanup-whitespace tokens)
- (typecheck tokens (list-of lexeme?))
+ ;; (typecheck tokens (list-of lexeme?))
(-> tokens drop-whitespace-both squeeze-whitespace))
(define (concatenate-tokens a b)