| 86 | } |
| 87 | |
| 88 | struct ASErrReport { |
| 89 | ASErrType type; |
| 90 | unsigned line_number; |
| 91 | unsigned column_number; |
| 92 | std::string message; |
| 93 | std::string file_name; |
| 94 | |
| 95 | ASErrReport(const std::string& err_line); |
| 96 | }; |
| 97 | |
| 98 | ASErrReport::ASErrReport(const std::string& err_line) { |
| 99 | // Lines are like this: |