|
LLDB mainline
|
A default highlighter that only highlights the user cursor, but doesn't do any other highlighting. More...
#include <DefaultHighlighter.h>
Public Member Functions | |
| 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. | |
| llvm::StringRef | GetPluginName () override |
| Public Member Functions inherited from lldb_private::Highlighter | |
| Highlighter ()=default | |
| virtual | ~Highlighter ()=default |
| Highlighter (const Highlighter &)=delete | |
| const Highlighter & | operator= (const Highlighter &)=delete |
| 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. | |
| Public Member Functions inherited from lldb_private::PluginInterface | |
| PluginInterface ()=default | |
| virtual | ~PluginInterface ()=default |
| PluginInterface (const PluginInterface &)=delete | |
| PluginInterface & | operator= (const PluginInterface &)=delete |
Static Public Member Functions | |
| static Highlighter * | CreateInstance (lldb::LanguageType language) |
| static void | Terminate () |
| static void | Initialize () |
| static llvm::StringRef | GetPluginNameStatic () |
A default highlighter that only highlights the user cursor, but doesn't do any other highlighting.
Definition at line 18 of file DefaultHighlighter.h.
|
static |
Definition at line 39 of file DefaultHighlighter.cpp.
References lldb_private::Highlighter::Highlighter().
Referenced by Initialize(), and Terminate().
|
inlineoverridevirtual |
Returns a human readable name for the selected highlighter.
Implements lldb_private::Highlighter.
Definition at line 20 of file DefaultHighlighter.h.
|
inlineoverridevirtual |
Implements lldb_private::PluginInterface.
Definition at line 32 of file DefaultHighlighter.h.
References GetPluginNameStatic().
|
inlinestatic |
Definition at line 31 of file DefaultHighlighter.h.
Referenced by GetPluginName(), and Initialize().
|
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 15 of file DefaultHighlighter.cpp.
References Highlight().
Referenced by Highlight().
|
static |
Definition at line 43 of file DefaultHighlighter.cpp.
References CreateInstance(), GetPluginNameStatic(), and lldb_private::PluginManager::RegisterPlugin().
|
static |
Definition at line 48 of file DefaultHighlighter.cpp.
References CreateInstance(), and lldb_private::PluginManager::UnregisterPlugin().