Inlay Visibility

已回答

Is it possible to have inlay hints visibile when the arguments to a function are variables vs primitives? For example

 

func Test (foo string) string {
	return foo
}

Will show type hints when called like

Test("hello") //foo:"hello"

However 

input := "hello"
Test(input)

Just does not show the hint for foo. This would be really useful to have always on.

0
正式评论

Hi,

Feel free to follow GO-3029.

请先登录再写评论。