This commit is contained in:
Andre Wagner
2026-04-30 14:00:19 -05:00
parent cda3229119
commit 2ae7b4aef8
5 changed files with 43 additions and 9 deletions

View File

@@ -1,4 +1,20 @@
#include "lexer.hh"
namespace tyche::as {
void Lexer::reset()
{
}
Token Lexer::peek() const
{
return {};
}
Token Lexer::ingest()
{
return {};
}
} // tyche