From ca491c9a026c5c36dfcda54a79dcc63dc3838728 Mon Sep 17 00:00:00 2001 From: mhoffm Date: Mon, 14 Jun 2021 23:39:45 +0200 Subject: [PATCH] cleanup --- src/scanner.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/scanner.c b/src/scanner.c index 3730ba7..bf76899 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -1,16 +1,12 @@ #include #include -// forward declarations - enum TokenType { TEMPLATE_CHAR, TEMPLATE_CHAR_IN_INTERPOLATION, ESCAPE_SEQUENCE }; -// helpers - static void advance(TSLexer *lexer) { lexer->advance(lexer, false); } static bool accept_template_char_inplace(TSLexer *lexer) {