mirror of
https://github.com/golang/go
synced 2024-11-19 04:54:41 -07:00
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"`
|
||
|
}
|