go/ast.Field.Tag (field)

10 uses

	go/ast (current package)
		ast.go#L200: 	Tag     *BasicLit     // field tag; or nil
		ast.go#L215: 	if f.Tag != nil {
		ast.go#L216: 		return f.Tag.End()
		walk.go#L77: 		if n.Tag != nil {
		walk.go#L78: 			Walk(v, n.Tag)

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

	go/printer
		nodes.go#L461: 	if f.Tag != nil || f.Comment != nil {
		nodes.go#L554: 			if f.Tag != nil {
		nodes.go#L559: 				p.expr(f.Tag)

	go/types
		struct.go#L113: 		tag = check.tag(f.Tag)