#include "bnf.h" #include "lexer.h" #include "grammer.h" #include "minicc.h" #include #include #include #include #include #include #include #include #include std::vector split(std::string s) { std::vector 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 << ")"; }