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