summaryrefslogtreecommitdiff
path: root/test/translate2.lm
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2011-07-13 02:31:57 +0000
committerAdrian Thurston <thurston@complang.org>2011-07-13 02:31:57 +0000
commitcb322af633c68f437730d3c09919ee6797360b9f (patch)
tree1774da6b90d532010cec3abbef97e7a170fa0b15 /test/translate2.lm
parentcc31dc1d130af2324b7e83ca12431477edcdb3dd (diff)
downloadcolm-cb322af633c68f437730d3c09919ee6797360b9f.tar.gz
Type typeid type arg now wrapped in <>. In line with map, list, etc.
Diffstat (limited to 'test/translate2.lm')
-rw-r--r--test/translate2.lm6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/translate2.lm b/test/translate2.lm
index 6c6947e1..c5baa396 100644
--- a/test/translate2.lm
+++ b/test/translate2.lm
@@ -24,9 +24,9 @@ context ctx
token ddd /'...'/ {
print('translating\n')
input.pull( match_length )
- input.push( make_token( typeid id "dot" ) )
- input.push( make_token( typeid id "dot" ) )
- input.push( make_token( typeid id "dot" ) )
+ input.push( make_token( typeid<id> "dot" ) )
+ input.push( make_token( typeid<id> "dot" ) )
+ input.push( make_token( typeid<id> "dot" ) )
}
}