This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository eshell.

View the commit online.

commit 4cccbe0ea51c9df4c6627a3481095721481fc712
Author: swagtoy <m...@ow.swag.toys>
AuthorDate: Wed Nov 20 18:33:29 2024 -0500

    lexer: escript_print_tokens I need to finish when I get off work
---
 escript/src/lexer.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/escript/src/lexer.c b/escript/src/lexer.c
index 2bd5fdc..38de566 100644
--- a/escript/src/lexer.c
+++ b/escript/src/lexer.c
@@ -82,6 +82,17 @@ lex_identifier(struct Escript_Lexer* lex)
 	return res;
 }
 
+// Will clean this up later
+void
+escript_print_tokens(struct Escript_Lexer* lex)
+{
+	struct Escript_Token* token;
+	EINA_INARRAY_FOREACH(lex->tokens, token)
+	{
+		
+	}
+}
+
 int
 escript_lexer_step(struct Escript_Lexer* lex)
 {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to