go/ast.ValueSpec.Comment (field)

10 uses

	go/ast (current package)
		ast.go#L925: 		Comment *CommentGroup // line comments; or nil
		walk.go#L296: 		if n.Comment != nil {
		walk.go#L297: 			Walk(v, n.Comment)

	go/parser
		parser.go#L2587: 		Comment: comment,

	go/printer
		nodes.go#L1631: 	if s.Comment != nil {
		nodes.go#L1635: 		p.setComment(s.Comment)
		nodes.go#L1711: 		p.setComment(s.Comment)
		printer.go#L1076: 		return n.Comment

	golang.org/x/tools/go/ast/inspector
		walk.go#L286: 		if n.Comment != nil {
		walk.go#L287: 			walk(v, edge.ValueSpec_Comment, -1, n.Comment)