2023-11-15 14:37:20 +01:00
|
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
#include "tokenize.h"
|
|
|
|
|
2023-12-15 14:52:46 +01:00
|
|
|
/**
|
|
|
|
* Display the line of code associated with an error, and highlight the associated part
|
|
|
|
*/
|
|
|
|
void print_error_position(vector<string> history, CodePosition pos);
|