mirror of
https://github.com/golang/go.git
synced 2025-05-29 11:25:43 +00:00
Gopls presently uses hand-coded data types (in internal/lsp/protocol) for communicating with LSP clients. Instead, modify it to use the automatically generated file (internal/lsp/protocol/tsprotocol.go). Replaced files have been put (temporarily) in a directory 'preserve' so readers can compare the old data types with the new ones. Change-Id: Idfa53a5783e2d6a47e03b20641dd76fbc2c32677 Reviewed-on: https://go-review.googlesource.com/c/tools/+/166757 Run-TryBot: Peter Weinberger <pjw@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
21 lines
528 B
Go
21 lines
528 B
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// This file contains the corresponding structures to the
|
|
// "Diagnostics" part of the LSP specification.
|
|
|
|
package protocol
|
|
|
|
type PublishDiagnosticsParams struct {
|
|
/**
|
|
* The URI for which diagnostic information is reported.
|
|
*/
|
|
URI DocumentURI `json:"uri"`
|
|
|
|
/**
|
|
* An array of diagnostic information items.
|
|
*/
|
|
Diagnostics []Diagnostic `json:"diagnostics"`
|
|
}
|