Print test summary

This commit is contained in:
2024-02-28 16:18:39 +01:00
parent 03a72fc583
commit 4d46fc6b4d
18 changed files with 890 additions and 706 deletions

View File

@ -1,25 +0,0 @@
#include "elna/result.hpp"
namespace elna
{
compile_error::compile_error(const char *message, const source_position position) noexcept
{
this->message = message;
this->position = position;
}
char const *compile_error::what() const noexcept
{
return this->message;
}
std::size_t compile_error::line() const noexcept
{
return this->position.line;
}
std::size_t compile_error::column() const noexcept
{
return this->position.column;
}
}