diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-02-13 17:42:22 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-02-13 17:42:22 +0330 |
commit | 0ff9508bb0ea7193b0101c3cd9b4ae594e44fd02 (patch) | |
tree | c2cd433d94399d3da5943397fb1b0f4a5ccd31a0 /src/compiler/parser.c | |
parent | 162d143cbc17696b3fb10ea1da856ca746a4eb6c (diff) |
some clean up
Diffstat (limited to 'src/compiler/parser.c')
-rw-r--r-- | src/compiler/parser.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/parser.c b/src/compiler/parser.c index 3b21074..26d53fb 100644 --- a/src/compiler/parser.c +++ b/src/compiler/parser.c @@ -766,6 +766,7 @@ ParserNode *parserNumber(LexerNode *node, ParserNode *parent) { printError(node->str_begin, node->str_end, "Not implemented"); return NULL; } + // fall through default: { bool success; uint64_t value = decimalToU64(node->str_begin, node->str_end, &success); |