9 #ifndef Sawyer_Clexer_H
10 #define Sawyer_Clexer_H
12 #include <Sawyer/Sawyer.h>
14 #include <Sawyer/Assert.h>
15 #include <Sawyer/Buffer.h>
16 #include <Sawyer/LineVector.h>
47 Token(): type_(TOK_EOF), begin_(0), end_(0) {}
49 Token(TokenType type,
size_t begin,
size_t end)
50 : type_(type), begin_(begin), end_(end) {
51 ASSERT_require(end >= begin);
54 TokenType type()
const {
58 size_t begin()
const {
68 std::string fileName_;
71 std::vector<Token> tokens_;
72 bool skipPreprocessorTokens_;
75 : fileName_(fileName), content_(fileName), at_(0), skipPreprocessorTokens_(
true) {}
78 : fileName_(fileName), content_(buffer), at_(0), skipPreprocessorTokens_(
true) {}
80 const std::string fileName()
const {
return fileName_; }
82 bool skipPreprocessorTokens()
const {
return skipPreprocessorTokens_; }
83 void skipPreprocessorTokens(
bool b) { skipPreprocessorTokens_ = b; }
85 const Token& operator[](
size_t lookahead);
87 void consume(
size_t n = 1);
89 std::string lexeme(
const Token &t)
const;
91 std::string toString(
const Token &t)
const;
94 std::string line(
const Token &t)
const;
96 bool matches(
const Token &token,
const char *s2)
const;
98 void emit(std::ostream &out,
const std::string &fileName,
const Token &token,
const std::string &message)
const;
100 void emit(std::ostream &out,
const std::string &fileName,
const Token &begin,
const Token &locus,
const Token &end,
101 const std::string &message)
const;
103 std::pair<size_t, size_t> location(
const Token &token)
const;
111 void makeNextToken();