From 4d47846852dcbccc193368fcc6ef31f872101416 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 27 Oct 2009 21:12:08 -0400 Subject: Ignore comments in tokenizer. --- dimension/tokenize.c | 39 +++++++++++++++++++++++++++++++++++---- 1 file changed, 35 insertions(+), 4 deletions(-) (limited to 'dimension') diff --git a/dimension/tokenize.c b/dimension/tokenize.c index 1d53f2f..360a228 100644 --- a/dimension/tokenize.c +++ b/dimension/tokenize.c @@ -52,7 +52,7 @@ dmnsn_tokenize(FILE *file) dmnsn_token token; dmnsn_array *tokens = dmnsn_new_array(sizeof(dmnsn_token)); - unsigned int line = 0, col = 0; + unsigned int line = 1, col = 0; unsigned int i; while (next - map < size) { @@ -96,9 +96,39 @@ dmnsn_tokenize(FILE *file) dmnsn_simple_token('+', DMNSN_PLUS); dmnsn_simple_token('-', DMNSN_MINUS); dmnsn_simple_token('*', DMNSN_STAR); - dmnsn_simple_token('/', DMNSN_SLASH); dmnsn_simple_token(',', DMNSN_COMMA); + /* Possible comment */ + case '/': + if (*(next + 1) == '/') { + /* A '//' comment block */ + do { + ++next; + } while (next - map < size && *next != '\n'); + + ++line; + col = 0; + continue; + } else if (*(next + 1) == '*') { + /* A '/*' comment block */ + do { + ++col; + if (*next == '\n') { + ++line; + col = 0; + } + + ++next; + } while (next - map < size - 1 + && !(*next == '*' && *(next + 1) == '/')); + next += 2; + continue; + } else { + /* Just the normal punctuation mark */ + token.type = DMNSN_SLASH; + } + break; + /* Numeric values */ case '.': /* Number begins with a decimal point, as in `.2' */ case '0': @@ -145,8 +175,9 @@ dmnsn_tokenize(FILE *file) default: /* Unrecognised character */ - fprintf(stderr, "Unrecognized character 0x%X in input.\n", - (unsigned int)*next); + fprintf(stderr, + "Unrecognized character 0x%X in input at line %u, column %u.\n", + (unsigned int)*next, line, col); dmnsn_delete_tokens(tokens); munmap(map, size); return NULL; -- cgit v1.2.3