clang-tools
15.0.0git
|
#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 153 of file Protocol.h.
Definition at line 166 of file Protocol.h.
Definition at line 169 of file Protocol.h.
Definition at line 173 of file Protocol.h.
Definition at line 162 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 160 of file Protocol.h.
Referenced by clang::clangd::fromJSON(), 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 155 of file Protocol.h.
Referenced by clang::clangd::buildRenameEdit(), clang::clangd::fromJSON(), clang::clangd::offsetToPosition(), clang::clangd::operator<<(), clang::clangd::positionToOffset(), and clang::clangd::toJSON().