Skip to content

Commit

Permalink
tests: update golden files
Browse files Browse the repository at this point in the history
  • Loading branch information
michenriksen committed Oct 21, 2023
1 parent 6080de9 commit ffbf5d2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions testdata/golden/parser_exclude-funcs.golden
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ type MyStruct struct {
unexportedField1, unexportedField2 int // unexported shorthand fields.
}

// MyMethod is a method associated with MyStruct.
func (s MyStruct) MyMethod()

// myUnexportedMethod is an example unexported method.
func (s MyStruct) myUnexportedMethod(a, b string) string

// myUnexportedInterface is an unexported interface.
type myUnexportedInterface interface {
AnotherMethod(string, int, MyFunctionType) (n int, err error)
Expand Down

0 comments on commit ffbf5d2

Please sign in to comment.