mirror of
https://github.com/golang/go
synced 2024-11-18 18:44:42 -07:00
internal/lsp: use interface for diagnostics code
Since the diagnostics code can be either a string or a number, use an empty interface. Change-Id: Ie1a4183b5c82ef177176075828511070ae3520bd Reviewed-on: https://go-review.googlesource.com/c/161217 Run-TryBot: Rebecca Stambler <rstambler@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
7f7074d5bc
commit
069601f371
@ -106,7 +106,7 @@ type Diagnostic struct {
|
||||
/**
|
||||
* The diagnostic's code, which might appear in the user interface.
|
||||
*/
|
||||
Code string `json:"code,omitempty"` // number | string
|
||||
Code interface{} `json:"code,omitempty"` // number | string
|
||||
|
||||
/**
|
||||
* A human-readable string describing the source of this
|
||||
|
Loading…
Reference in New Issue
Block a user