-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.hpp
81 lines (67 loc) · 1.44 KB
/
error.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* ollieberzs 2018
** error.hpp
** handle oca errors
*/
#pragma once
#include "common.hpp"
OCA_BEGIN
enum ErrorType {
// Lexing
UNKNOWN_SYMBOL = 0,
INDENTED_FILE,
// Parsing
NOT_AN_EXPRESSION,
UNEXPECTED_INDENT,
NO_NEWLINE,
NO_PARAMETER,
NOTHING_TO_SET,
NO_CLOSING_BRACE,
NO_INDENT,
NO_NAME,
NO_ACCESS_KEY,
NO_ACCESS_KEY_CALL,
NO_CONDITIONAL,
NO_THEN,
NO_RIGHT_VALUE,
NOTHING_TO_INJECT,
// Evaluating
NEW_TABLE_KEY,
CANNOT_SPLIT,
UNDEFINED_OPERATOR,
IF_BOOL,
UNDEFINED_IN_TABLE,
NO_ARGUMENT,
SMALL_TABLE,
UNDEFINED,
TYPE_MISMATCH,
NOT_PUBLIC,
CUSTOM_ERROR
};
enum ValueType { INT = 0, REAL, STRING, BOOL };
class Error {
public:
ErrorType type;
std::string detail;
Error(ErrorType type, const std::string& detail = "");
};
struct ErrorInfo {
uint position;
uint width;
std::string message;
std::string typestring;
};
class ErrorHandler {
public:
const State* state;
const std::string* path{};
const std::string* source{};
const std::vector<Token>* tokens{};
explicit ErrorHandler(const State* state);
void panic(const Error& error) const;
private:
ErrorInfo getErrorInfo(const Error& error) const;
ErrorInfo getLexErrorInfo(const Error& error) const;
ErrorInfo getParseErrorInfo(const Error& error) const;
ErrorInfo getEvalErrorInfo(const Error& error) const;
};
OCA_END