summaryrefslogtreecommitdiffhomepage
path: root/minicc.cpp
blob: 48d2a15946c72a5cbfd8def8eaa2799cf0d830f1 (plain)
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
#include "bnf.h"
#include "lexer.h"
#include "grammer.h"
#include "minicc.h"

#include <boost/algorithm/string.hpp>

#include <algorithm>
#include <cctype>
#include <deque>
#include <map>
#include <memory>
#include <string>
#include <utility>
#include <vector>

std::vector<std::string> split(std::string s)
{
 std::vector<std::string> result;
 boost::algorithm::split(result, s, boost::algorithm::is_any_of(s), boost::algorithm::token_compress_on);
 while (result.size() > 0 && result.back() == ""s)
  result.pop_back();
 return result;
}

bool operator==(const Location &a, const Location &b)
{
 return (a.line == b.line && a.column == b.column);
}

bool operator==(const Token &a, const Token &b)
{
 return (a.type == b.type && a.value == b.value && a.location == b.location);
}

std::ostream& operator<<(std::ostream& os, const Token& token) {
 return os << token.type << ": " << token.value << "(" << token.location.line << ":" << token.location.column << ")";
}