15 lines
222 B
C
15 lines
222 B
C
|
#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
|