go/ast.Field.Doc (field)

8 uses

	go/ast (current package)
		ast.go#L197: 	Doc     *CommentGroup // associated documentation; or nil
		walk.go#L70: 		if n.Doc != nil {
		walk.go#L71: 			Walk(v, n.Doc)

	go/parser
		parser.go#L667: 	field := &ast.Field{Doc: doc, Names: names, Type: typ, Tag: tag, Comment: p.lineComment}
		parser.go#L1082: 	return &ast.Field{Doc: doc, Names: idents, Type: typ}

	go/printer
		nodes.go#L541: 			p.setComment(f.Doc)
		nodes.go#L596: 			p.setComment(f.Doc)
		printer.go#L1039: 		return n.Doc