mirror of https://github.com/golang/go.git
internal/lsp: add inlay hints count to test summary
Change-Id: Ia74f4a43a114715a6011405bf70f9dfa269c3318 Reviewed-on: https://go-review.googlesource.com/c/tools/+/411901 TryBot-Result: Gopher Robot <gobot@golang.org> gopls-CI: kokoro <noreply+kokoro@google.com> Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com> Run-TryBot: Suzy Mueller <suzmue@golang.org>
This commit is contained in:
parent
c15c04572c
commit
ebc084af8b
|
|
@ -19,6 +19,7 @@ MethodExtractionCount = 6
|
|||
DefinitionsCount = 95
|
||||
TypeDefinitionsCount = 18
|
||||
HighlightsCount = 69
|
||||
InlayHintsCount = 4
|
||||
ReferencesCount = 27
|
||||
RenamesCount = 41
|
||||
PrepareRenamesCount = 7
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ MethodExtractionCount = 6
|
|||
DefinitionsCount = 108
|
||||
TypeDefinitionsCount = 18
|
||||
HighlightsCount = 69
|
||||
InlayHintsCount = 4
|
||||
ReferencesCount = 27
|
||||
RenamesCount = 48
|
||||
PrepareRenamesCount = 7
|
||||
|
|
|
|||
|
|
@ -984,6 +984,7 @@ func checkData(t *testing.T, data *Data) {
|
|||
fmt.Fprintf(buf, "DefinitionsCount = %v\n", definitionCount)
|
||||
fmt.Fprintf(buf, "TypeDefinitionsCount = %v\n", typeDefinitionCount)
|
||||
fmt.Fprintf(buf, "HighlightsCount = %v\n", len(data.Highlights))
|
||||
fmt.Fprintf(buf, "InlayHintsCount = %v\n", len(data.InlayHints))
|
||||
fmt.Fprintf(buf, "ReferencesCount = %v\n", len(data.References))
|
||||
fmt.Fprintf(buf, "RenamesCount = %v\n", len(data.Renames))
|
||||
fmt.Fprintf(buf, "PrepareRenamesCount = %v\n", len(data.PrepareRenames))
|
||||
|
|
|
|||
Loading…
Reference in New Issue