go/ast.Field.Comment (field)

7 uses

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

	go/parser
		parser.go#L735: 	field := &ast.Field{Doc: doc, Names: names, Type: typ, Tag: tag, Comment: comment}
		parser.go#L1271: 			f.Comment = p.expectSemi()
		parser.go#L1276: 			list = append(list, &ast.Field{Type: typ, Comment: comment})
		parser.go#L1281: 				list = append(list, &ast.Field{Type: typ, Comment: comment})