LLDB mainline
|
#include <ClangHighlighter.h>
Public Member Functions | |
ClangHighlighter () | |
llvm::StringRef | GetName () const override |
Returns a human readable name for the selected highlighter. | |
void | Highlight (const HighlightStyle &options, llvm::StringRef line, std::optional< size_t > cursor_pos, llvm::StringRef previous_lines, Stream &s) const override |
Highlights the given line. | |
bool | isKeyword (llvm::StringRef token) const |
Returns true if the given string represents a keywords in any Clang supported language. | |
Public Member Functions inherited from lldb_private::Highlighter | |
Highlighter ()=default | |
virtual | ~Highlighter ()=default |
Highlighter (const Highlighter &)=delete | |
const Highlighter & | operator= (const Highlighter &)=delete |
virtual llvm::StringRef | GetName () const =0 |
Returns a human readable name for the selected highlighter. | |
virtual void | Highlight (const HighlightStyle &options, llvm::StringRef line, std::optional< size_t > cursor_pos, llvm::StringRef previous_lines, Stream &s) const =0 |
Highlights the given line. | |
std::string | Highlight (const HighlightStyle &options, llvm::StringRef line, std::optional< size_t > cursor_pos, llvm::StringRef previous_lines="") const |
Utility method for calling Highlight without a stream. | |
Private Attributes | |
llvm::StringSet | keywords |
Definition at line 20 of file ClangHighlighter.h.
ClangHighlighter::ClangHighlighter | ( | ) |
Definition at line 29 of file ClangHighlighter.cpp.
|
inlineoverridevirtual |
Returns a human readable name for the selected highlighter.
Implements lldb_private::Highlighter.
Definition at line 25 of file ClangHighlighter.h.
|
overridevirtual |
Highlights the given line.
options | The highlight options. |
line | The user supplied line that needs to be highlighted. |
cursor_pos | The cursor position of the user in this line, starting at 0 (which means the cursor is on the first character in 'line'). |
previous_lines | Any previous lines the user has written which we should only use for getting the context of the Highlighting right. |
s | The stream to which the highlighted version of the user string should be written. |
Implements lldb_private::Highlighter.
Definition at line 133 of file ClangHighlighter.cpp.
References lldb_private::HighlightStyle::ColorStyle::Apply(), determineClangStyle(), lldb_private::StreamString::GetString(), lldb_private::FileSystem::Instance(), and lldb_private::HighlightStyle::selected.
bool ClangHighlighter::isKeyword | ( | llvm::StringRef | token | ) | const |
Returns true if the given string represents a keywords in any Clang supported language.
Definition at line 25 of file ClangHighlighter.cpp.
References keywords.
Referenced by determineClangStyle().
|
private |
Definition at line 21 of file ClangHighlighter.h.
Referenced by isKeyword().