hoshi-lang dev
Yet another programming language
Loading...
Searching...
No Matches
definition.h
Go to the documentation of this file.
1//
2// Go-to-Definition Provider for hoshi-lang LSP
3//
4
5#ifndef HOSHI_LANG_LSP_DEFINITION_H
6#define HOSHI_LANG_LSP_DEFINITION_H
7
8#include "protocol.h"
9#include "document.h"
10
11namespace lsp {
12
14public:
15 DefinitionResult provide(Document *doc, const Position &pos, const std::string &uri);
16};
17
18} // namespace lsp
19
20#endif // HOSHI_LANG_LSP_DEFINITION_H
DefinitionResult provide(Document *doc, const Position &pos, const std::string &uri)
std::vector< Location > DefinitionResult
Definition protocol.h:271