summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2010-05-27 14:36:29 -0700
committerCarl Worth <cworth@cworth.org>2010-05-27 14:38:20 -0700
commit050e3ded1ea05cfe336dd0cd20212d17d7960c9e (patch)
tree55a4e25d0c1c5eb3995e2efd9cbad1c6e7e496ec /tests
parent85b50e840d969c4d9ebcfcc3df1df7a95e07e34e (diff)
Implement token pasting of integers.
To do this correctly, we change the lexer to lex integers as string values, (new token type of INTEGER_STRING), and only convert to integer values when evaluating an expression value. Add a new test case for this, (which does pass now).
Diffstat (limited to 'tests')
-rw-r--r--tests/059-token-pasting-integer.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/059-token-pasting-integer.c b/tests/059-token-pasting-integer.c
new file mode 100644
index 0000000..37b895a
--- /dev/null
+++ b/tests/059-token-pasting-integer.c
@@ -0,0 +1,4 @@
+#define paste(x,y) x ## y
+paste(1,2)
+paste(1,000)
+paste(identifier,2)