From 5c1f937a7eb7a9cc9cd86cb69b3263f41f24408f Mon Sep 17 00:00:00 2001 From: Cori Barker Date: Sun, 22 Feb 2026 22:24:27 +0000 Subject: Partially completed lots of changes, refactoring most of the files --- include/lexer/lexer.hpp | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 include/lexer/lexer.hpp (limited to 'include/lexer/lexer.hpp') diff --git a/include/lexer/lexer.hpp b/include/lexer/lexer.hpp deleted file mode 100644 index 2c165b6..0000000 --- a/include/lexer/lexer.hpp +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef LEXER_H -#define LEXER_H - -#include "token.hpp" - -#include -#include - -class Lexer { -public: - explicit Lexer (const std::string& src); - - std::vector tokenise(); - -private: - int line; - int column; - int position; - std::string src; - std::vector tokens; - - char advance(); - void skipWhitespace(); - void skipComment(); -}; - -#endif -- cgit v1.2.3