diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-05-04 18:24:32 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-05-04 18:24:32 +0900 |
| commit | 7954a9925a76d45a665934944d80b09638c8340b (patch) | |
| tree | f78b04e5301d85ebafc314de0e3d969eb1d74cf7 /main.c | |
| parent | 55f2e9c33f8e61e19da4a52fc6a04cdf7dd770c4 (diff) | |
| download | P4Dcc-7954a9925a76d45a665934944d80b09638c8340b.tar.gz P4Dcc-7954a9925a76d45a665934944d80b09638c8340b.tar.zst P4Dcc-7954a9925a76d45a665934944d80b09638c8340b.zip | |
fix issue where identifier whose name contains underscore cannot be parsed
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -212,7 +212,7 @@ TOKEN* tokenize(char* src, int len) { tok += 1; } else if (isalpha(c)) { int start = pos; - while (isalnum(src[pos])) { + while (isalnum(src[pos]) || src[pos] == '_') { pos += 1; } if (strstr(src + start, "break") == src + start) { @@ -1379,10 +1379,11 @@ int main() { TOKEN* tokens = tokenize(source, source_len); // for (int i = 0; tokens[i].kind != TK_EOF; i++) { - // for (int j = 0; j < tokens[i].len; j++) { - // putchar(tokens[i].value[j]); + // if (tokens[i].value) { + // printf("%s\n", tokens[i].value); + // } else { + // printf("(%d)\n", tokens[i].kind); // } - // printf("\n"); // } PARSER* parser = parser_new(tokens); |
