go/ast.Field.Comment (field)

12 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#L749: 	field := &ast.Field{Doc: doc, Names: names, Type: typ, Tag: tag, Comment: comment}
		parser.go#L1285: 			f.Comment = p.expectSemi()
		parser.go#L1290: 			list = append(list, &ast.Field{Type: typ, Comment: comment})
		parser.go#L1295: 				list = append(list, &ast.Field{Type: typ, Comment: comment})

	go/printer
		nodes.go#L476: 	if f.Tag != nil || f.Comment != nil {
		nodes.go#L585: 			if f.Comment != nil {
		nodes.go#L589: 				p.setComment(f.Comment)
		nodes.go#L631: 			p.setComment(f.Comment)
		printer.go#L1072: 		return n.Comment