hoshi-lang dev
Yet another programming language
Loading...
Searching...
No Matches
hover.h
Go to the documentation of this file.
1//
2// Hover Provider for hoshi-lang LSP
3//
4
5#ifndef HOSHI_LANG_LSP_HOVER_H
6#define HOSHI_LANG_LSP_HOVER_H
7
8#include "protocol.h"
9#include "document.h"
10#include <optional>
11
12namespace lsp {
13
15public:
16 std::optional<Hover> provide(Document *doc, const Position &pos);
17
18private:
19 std::optional<Hover> hoverOnSymbol(Document *doc, const Position &pos);
20};
21
22} // namespace lsp
23
24#endif // HOSHI_LANG_LSP_HOVER_H
std::optional< Hover > provide(Document *doc, const Position &pos)
Definition hover.cpp:11
std::optional< Hover > hoverOnSymbol(Document *doc, const Position &pos)
Definition hover.cpp:54