mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 15:45:08 +00:00
37 lines
934 B
C++
37 lines
934 B
C++
#ifndef SOURCELOCATION_H_
|
|
#define SOURCELOCATION_H_
|
|
|
|
#include <clang-c/Index.h>
|
|
#include <string>
|
|
|
|
namespace clang {
|
|
|
|
class Offset {
|
|
public:
|
|
Offset() {}
|
|
Offset(unsigned line, unsigned index) : line(line), index(index) {}
|
|
bool operator==(const clang::Offset &o) { return (line == o.line && index == o.index); }
|
|
bool operator!=(const clang::Offset &o) { return !(*this == o); }
|
|
unsigned line;
|
|
unsigned index; //byte index in line (not char number)
|
|
};
|
|
|
|
class SourceLocation {
|
|
friend class TranslationUnit;
|
|
SourceLocation(CXTranslationUnit &tu, const std::string &filepath, unsigned offset);
|
|
SourceLocation(CXTranslationUnit &tu, const std::string &filepath, unsigned line, unsigned column);
|
|
public:
|
|
SourceLocation(const CXSourceLocation& cx_location);
|
|
|
|
std::string path;
|
|
unsigned line;
|
|
unsigned column;
|
|
unsigned offset;
|
|
|
|
std::string ToString() const;
|
|
};
|
|
|
|
} // namespace clang
|
|
|
|
#endif // SOURCELOCATION_H_
|