diff options
author | Adrian Thurston <thurston@complang.org> | 2010-01-31 18:04:16 +0000 |
---|---|---|
committer | Adrian Thurston <thurston@complang.org> | 2010-01-31 18:04:16 +0000 |
commit | addf9105a8f531a1bb7ee170e57969f67649f0e2 (patch) | |
tree | ed858e77f3018c82663fed901c29cbbb8b666f07 /colm.vim | |
parent | 6a0e2010a138719b9a2e1258c7309ec3ede5a469 (diff) | |
download | colm-addf9105a8f531a1bb7ee170e57969f67649f0e2.tar.gz |
The keyword 'cons' is now a synonym for 'construct'.
The keyword 'parser' is now a synonym for 'accum'. I was hesitant of this at
first due to it being only one letter away from 'parse'.
Now treating parser context as an object that needs to b passed to parse
statements of types that have context and passed to an accumulator (parser
object).
Diffstat (limited to 'colm.vim')
-rw-r--r-- | colm.vim | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -55,8 +55,8 @@ syntax match tlNumber "false" syntax keyword Type \ commit include literal iter \ namespace lex reducefirst global include - \ construct parse parse_stop match require - \ preeof left right nonassoc prec accum context + \ construct cons parse parse_stop match require + \ preeof left right nonassoc prec accum context parser alias syntax keyword typeKeywords \ int str bool any ref vector map list ptr |