Mercurial > hg > index.cgi
comparison lwbasic/lwbasic.h @ 33:890a8f688889
Basic parsing of local variable decls
author | lost@l-w.ca |
---|---|
date | Thu, 03 Feb 2011 22:15:57 -0700 |
parents | 49d608aecc4d |
children | bfea77812e64 |
comparison
equal
deleted
inserted
replaced
32:49d608aecc4d | 33:890a8f688889 |
---|---|
83 token_kw_params, /* PARAMS keyword */ | 83 token_kw_params, /* PARAMS keyword */ |
84 token_kw_returns, /* RETURNS keyword */ | 84 token_kw_returns, /* RETURNS keyword */ |
85 token_kw_integer, /* INTEGER keyword */ | 85 token_kw_integer, /* INTEGER keyword */ |
86 token_kw_endsub, /* ENDSUB keyword */ | 86 token_kw_endsub, /* ENDSUB keyword */ |
87 token_kw_endfunction, /* ENDFUNCTION keyword */ | 87 token_kw_endfunction, /* ENDFUNCTION keyword */ |
88 token_kw_dim, /* DIM keyword */ | |
88 token_identifier, /* an identifier (variable, function, etc. */ | 89 token_identifier, /* an identifier (variable, function, etc. */ |
89 token_char, /* single character; fallback */ | 90 token_char, /* single character; fallback */ |
90 token_uint, /* unsigned integer up to 32 bits */ | 91 token_uint, /* unsigned integer up to 32 bits */ |
91 token_int, /* signed integer up to 32 bits */ | 92 token_int, /* signed integer up to 32 bits */ |
92 token_eol, /* end of line */ | 93 token_eol, /* end of line */ |