aboutsummaryrefslogtreecommitdiff
path: root/tests/cpp.scm
blob: 1d4e62f32eb37d82e950ae07a3fb90642f3bac49 (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
(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"))