mirror of
https://github.com/golang/go
synced 2024-11-06 02:26:17 -07:00
8f81e2e6d4
This change adds a quick fix for diagnostics that have an error message of the form "undeclared name: %s". It provides a quick fix to add a new variable with that name. Updates golang/go#34644 Change-Id: I6534ee79d1770d1a62bac169c3c7e52e2443f39e Reviewed-on: https://go-review.googlesource.com/c/tools/+/222237 Run-TryBot: Rohan Challa <rohan@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
18 lines
463 B
Go
18 lines
463 B
Go
// Copyright 2020 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.
|
|
|
|
package undeclaredname_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"golang.org/x/tools/go/analysis/analysistest"
|
|
"golang.org/x/tools/internal/lsp/analysis/undeclaredname"
|
|
)
|
|
|
|
func Test(t *testing.T) {
|
|
testdata := analysistest.TestData()
|
|
analysistest.RunWithSuggestedFixes(t, testdata, undeclaredname.Analyzer, "a")
|
|
}
|