#ifndef SOURCE_ERROR_H #define SOURCE_ERROR_H #include "token.h" #include struct SourceError { Span span; std::string message; SourceError(Span span, std::string message); }; #endif // SOURCE_ERROR_H