From 6336bd5578e3d92f1ec34d10a96542ed429fdd21 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Thu, 12 Jun 2025 21:35:23 +0530 Subject: lexer: parse strings --- include/lexer.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/lexer.h') diff --git a/include/lexer.h b/include/lexer.h index 6d182c3..d6936f3 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -22,6 +22,11 @@ private: char advance(void); char peek(void); bool match(char c); + +private: + void string(void); + +private: void add_token(token_type_e type); void scan_token(void); -- cgit v1.2.3