clang-tools
7.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 89 of file Protocol.h.
Definition at line 102 of file Protocol.h.
Definition at line 105 of file Protocol.h.
Definition at line 109 of file Protocol.h.
Definition at line 98 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 96 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 91 of file Protocol.h.
Referenced by clang::clangd::fromJSON(), clang::clangd::offsetToPosition(), clang::clangd::operator<<(), clang::clangd::positionToOffset(), and clang::clangd::toJSON().