aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/fillstruct/fill_struct.go.golden
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/testdata/fillstruct/fill_struct.go.golden')
-rw-r--r--internal/lsp/testdata/fillstruct/fill_struct.go.golden124
1 files changed, 0 insertions, 124 deletions
diff --git a/internal/lsp/testdata/fillstruct/fill_struct.go.golden b/internal/lsp/testdata/fillstruct/fill_struct.go.golden
deleted file mode 100644
index 8d9970315..000000000
--- a/internal/lsp/testdata/fillstruct/fill_struct.go.golden
+++ /dev/null
@@ -1,124 +0,0 @@
--- suggestedfix_fill_struct_20_15 --
-package fillstruct
-
-type StructA struct {
- unexportedIntField int
- ExportedIntField int
- MapA map[int]string
- Array []int
- StructB
-}
-
-type StructA2 struct {
- B *StructB
-}
-
-type StructA3 struct {
- B StructB
-}
-
-func fill() {
- a := StructA{
- unexportedIntField: 0,
- ExportedIntField: 0,
- MapA: map[int]string{},
- Array: []int{},
- StructB: StructB{},
- } //@suggestedfix("}", "refactor.rewrite")
- b := StructA2{} //@suggestedfix("}", "refactor.rewrite")
- c := StructA3{} //@suggestedfix("}", "refactor.rewrite")
- if true {
- _ = StructA3{} //@suggestedfix("}", "refactor.rewrite")
- }
-}
-
--- suggestedfix_fill_struct_21_16 --
-package fillstruct
-
-type StructA struct {
- unexportedIntField int
- ExportedIntField int
- MapA map[int]string
- Array []int
- StructB
-}
-
-type StructA2 struct {
- B *StructB
-}
-
-type StructA3 struct {
- B StructB
-}
-
-func fill() {
- a := StructA{} //@suggestedfix("}", "refactor.rewrite")
- b := StructA2{
- B: &StructB{},
- } //@suggestedfix("}", "refactor.rewrite")
- c := StructA3{} //@suggestedfix("}", "refactor.rewrite")
- if true {
- _ = StructA3{} //@suggestedfix("}", "refactor.rewrite")
- }
-}
-
--- suggestedfix_fill_struct_22_16 --
-package fillstruct
-
-type StructA struct {
- unexportedIntField int
- ExportedIntField int
- MapA map[int]string
- Array []int
- StructB
-}
-
-type StructA2 struct {
- B *StructB
-}
-
-type StructA3 struct {
- B StructB
-}
-
-func fill() {
- a := StructA{} //@suggestedfix("}", "refactor.rewrite")
- b := StructA2{} //@suggestedfix("}", "refactor.rewrite")
- c := StructA3{
- B: StructB{},
- } //@suggestedfix("}", "refactor.rewrite")
- if true {
- _ = StructA3{} //@suggestedfix("}", "refactor.rewrite")
- }
-}
-
--- suggestedfix_fill_struct_24_16 --
-package fillstruct
-
-type StructA struct {
- unexportedIntField int
- ExportedIntField int
- MapA map[int]string
- Array []int
- StructB
-}
-
-type StructA2 struct {
- B *StructB
-}
-
-type StructA3 struct {
- B StructB
-}
-
-func fill() {
- a := StructA{} //@suggestedfix("}", "refactor.rewrite")
- b := StructA2{} //@suggestedfix("}", "refactor.rewrite")
- c := StructA3{} //@suggestedfix("}", "refactor.rewrite")
- if true {
- _ = StructA3{
- B: StructB{},
- } //@suggestedfix("}", "refactor.rewrite")
- }
-}
-