schema_editor/comdel/parser/source_error.h

15 lines
225 B
C++

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