aboutsummaryrefslogtreecommitdiff
path: root/tests/cpp.scm
blob: d83ba5549cc581ed1087c30ee1af2a294ce04ad2 (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
29
30
31
32
33
34
35
36
37
38
39
(((c lex) lex)
 ((c parse) parse-lexeme-tree))

(define run (compose parse-lexeme-tree lex))

(test-equal
    '(+ (post-increment (dereference C)) 3)
  (run "(*C)++ + 3"))


(test-equal
    '(+ (post-increment (dereference C)) 3)
  (run "*C++ + 3"))

(test-equal
    '(post-increment (dereference C))
  (run "*C++"))

(test-equal
    '(+ (post-increment C) (post-increment C))
  (run "C++ + C++"))

(test-equal
    '(+ (pre-increment C) (pre-increment C))
  (run "++C + ++C"))


(test-equal
    '(+ 2 (* 2 2))
  (run "2 + 2 * 2"))

(test-equal
    '(+ (* 2 2) 2)
  (run "2 * 2 + 2"))

(test-equal
    '(+ 2 2 2)
  (run "2+2+2"))