-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonikers.go
88 lines (73 loc) · 2.12 KB
/
monikers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package lsp
// MonikerOptions specifies the options for settin up moniker support for a
// language server.
type MonikerOptions struct {
WorkDoneProgressOptions
}
// MonikerRegistrationOptions describes options to be used when registering for
// moniker capabilities.
type MonikerRegistrationOptions struct {
TextDocumentRegistrationOptions
MonikerOptions
}
// MonikerParams contains the data the client sends through a
// `textDocument/moniker` request.
type MonikerParams struct {
TextDocumentPositionParams
WorkDoneProgressParams
PartialResultParams
}
// UniquenessLevel represents a level of uniqueness for a moniker.
type UniquenessLevel string
const (
UniquenessLevelDocument UniquenessLevel = "document"
UniquenessLevelProject UniquenessLevel = "project"
UniquenessLevelGroup UniquenessLevel = "group"
UniquenessLevelScheme UniquenessLevel = "scheme"
UniquenessLevelGlobal UniquenessLevel = "global"
)
func (level UniquenessLevel) String() string {
switch level {
case UniquenessLevelDocument:
return "document"
case UniquenessLevelProject:
return "project"
case UniquenessLevelGroup:
return "group"
case UniquenessLevelScheme:
return "scheme"
case UniquenessLevelGlobal:
return "global"
}
return "<unknown>"
}
// MonikerKind represents the kind of moniker.
type MonikerKind string
const (
MonikerKindImport MonikerKind = "import"
MonikerKindExport MonikerKind = "export"
MonikerKindLocal MonikerKind = "local"
)
func (kind MonikerKind) String() string {
switch kind {
case MonikerKindImport:
return "import"
case MonikerKindExport:
return "export"
case MonikerKindLocal:
return "local"
}
return "<unknown>"
}
// Moniker represents a single moniker.
type Moniker struct {
// The scheme of the moniker. For example tsc or .Net
Scheme string `json:"scheme"`
// The identifier of the moniker. The value is opaque in LSIF however
// schema owners are allowed to define the structure if they want.
Identifier string `json:"identifier"`
// The scope in which the moniker is unique
Unique UniquenessLevel `json:"unique"`
// The moniker kind if known.
Kind MonikerKind `json:"kind,omitempty"`
}