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