Allowed Util::PrintLn to use T.LogStr()

This commit is contained in:
Pasha Bibko
2025-07-23 21:22:39 +01:00
parent 86a178b7d5
commit 004f859cc7
2 changed files with 24 additions and 1 deletions

View File

@@ -6,6 +6,11 @@ namespace LXC::Parser
{
Util::ReturnVal<std::vector<FunctionAST>, ParserError> TurnTokensIntoAST(const Lexer::LexerOutput& input)
{
for (const auto& token : input)
{
Util::PrintLn(token);
}
return Util::FunctionFail<ParserError>();
}
}