schema_editor/comdel/parser/sourceerror.h

15 lines
222 B
C
Raw Normal View History

2022-03-29 19:31:45 +00:00
#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