#include "lexer.hh" namespace tyche::as { void Lexer::reset() { } Token Lexer::peek() const { return {}; } Token Lexer::ingest() { return {}; } } // tyche