Miroslav Kovalenko

Results 5 comments of Miroslav Kovalenko

@suzmue See the log below. I added the two settings entries as described in your instructions, restarted VS Code and ran `Go: Fill struct` again. But, it seems that nothing...

@hyangah See the requested logs attached. [gopls.log](https://github.com/golang/vscode-go/files/8283051/gopls.log)

@hyangah Sorry for late response. I think I found a reproducer. main.go ``` package main type Foo struct { a int b Bar } func main() { _ = Foo{...

@hyangah Indeed, I always use "Go: Fill struct" command. The Cmd+. trick worked well! Thanks!

I can confirm that this is an issue indeed. I fixed it by adding `MarshalJSON` method to (using your example) `PostDescribeEventById200JSONResponse`: ```go func (c PostDescribeEventById200JSONResponse) MarshalJSON() ([]byte, error) { return...