go/ast.Field.Tag (field)

10 uses

	go/ast (current package)
		ast.go#L201: 	Tag     *BasicLit     // field tag; or nil
		ast.go#L216: 	if f.Tag != nil {
		ast.go#L217: 		return f.Tag.End()
		walk.go#L57: 		if n.Tag != nil {
		walk.go#L58: 			Walk(v, n.Tag)

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

	go/printer
		nodes.go#L476: 	if f.Tag != nil || f.Comment != nil {
		nodes.go#L577: 			if f.Tag != nil {
		nodes.go#L582: 				p.expr(f.Tag)

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