clang-tools
8.0.0
|
#include <Protocol.h>
Public Attributes | |
int | line = 0 |
Line position in a document (zero-based). More... | |
int | character = 0 |
Character offset on a line in a document (zero-based). More... | |
Friends | |
bool | operator== (const Position &LHS, const Position &RHS) |
bool | operator!= (const Position &LHS, const Position &RHS) |
bool | operator< (const Position &LHS, const Position &RHS) |
bool | operator<= (const Position &LHS, const Position &RHS) |
Definition at line 125 of file Protocol.h.
Definition at line 138 of file Protocol.h.
Definition at line 141 of file Protocol.h.
Definition at line 145 of file Protocol.h.
Definition at line 134 of file Protocol.h.
int clang::clangd::Position::character = 0 |
Character offset on a line in a document (zero-based).
WARNING: this is in UTF-16 codepoints, not bytes or characters! Use the functions in SourceCode.h to construct/interpret Positions.
Definition at line 132 of file Protocol.h.
Referenced by clang::clangd::fromJSON(), clang::clangd::IsRangeConsecutive(), clang::clangd::offsetToPosition(), clang::clangd::operator<<(), clang::clangd::positionToOffset(), and clang::clangd::toJSON().
int clang::clangd::Position::line = 0 |
Line position in a document (zero-based).
Definition at line 127 of file Protocol.h.
Referenced by clang::clangd::fromJSON(), clang::clangd::IsRangeConsecutive(), clang::clangd::offsetToPosition(), clang::clangd::operator<<(), clang::clangd::positionToOffset(), and clang::clangd::toJSON().