func strconv.Unquote

23 uses

	strconv (current package)
		quote.go#L379: func Unquote(s string) (string, error) {

	fmt
		scan.go#L871: 		result, err := strconv.Unquote(string(s.buf))

	github.com/aws/smithy-go/transport/http
		headerlist.go#L86: 			value, err = strconv.Unquote(value)

	github.com/google/go-cmp/cmp
		report_slices.go#L198: 				line, _ := strconv.Unquote(string(r.Value.(textLine)))

	go/ast
		import.go#L60: 	t, err := strconv.Unquote(s.(*ImportSpec).Path.Value)
		resolve.go#L116: 			path, _ := strconv.Unquote(spec.Path.Value)

	go/build
		build.go#L923: 				com, err := strconv.Unquote(qcom)
		read.go#L458: 			path, err := strconv.Unquote(quoted)
		read.go#L555: 					q, err := strconv.Unquote(args[:i+1])

	go/constant
		value.go#L449: 		if s, err := strconv.Unquote(lit); err == nil {

	go/doc
		example.go#L276: 		p, err := strconv.Unquote(s.Path.Value)
		reader.go#L568: 						if import_, err := strconv.Unquote(s.Path.Value); err == nil {

	go/parser
		parser.go#L2494: 	s, _ := strconv.Unquote(lit) // go/scanner returns a legal string literal

	go/printer
		nodes.go#L1583: 	s, err := strconv.Unquote(lit.Value)

	go/types
		resolver.go#L85: 	s, err := strconv.Unquote(path)
		struct.go#L210: 			if val, err := strconv.Unquote(t.Value); err == nil {

	golang.org/x/tools/go/packages
		golist_overlay.go#L396: 		path, err := strconv.Unquote(quotedPath)

	reflect
		type.go#L1231: 			value, err := strconv.Unquote(qvalue)

	runtime/debug
		mod.go#L222: 				key, _ = strconv.Unquote(rawKey)
		mod.go#L241: 					value, err = strconv.Unquote(rawValue)

	text/template/parse
		parse.go#L329: 	t.Name, err = strconv.Unquote(name.val)
		parse.go#L645: 		s, err := strconv.Unquote(token.val)
		parse.go#L756: 		s, err := strconv.Unquote(token.val)