aboutsummaryrefslogtreecommitdiff
path: root/module/c/cpp-types.scm
blob: 64bf6a7b4c5b674f4f8f7c24a02c87f31238409d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(define-module (c cpp-types)
  :use-module (c lex2)
  :use-module (ice-9 match)
  :use-module (c cpp-util)
  :export (whitespace-token?
           comment-token?
           preprocessing-token?
           newline-token?
           identifier-token?))

(define (whitespace-token? x)
  (eq? 'whitespace (lexeme-type x)))

(define (comment-token? x)
  (eq? 'comment (lexeme-type x)))

(define (preprocessing-token? x)
  (eq? 'preprocessing-token (lexeme-type x)))

(define (newline-token? x)
  (and (whitespace-token? x)
       (string=? "\n" (lexeme-body x))))

(define (identifier-token? token)
  (and (preprocessing-token? token)
       (match (lexeme-body token)
         (`(identifier ,id) id)
         (_ #f))))