func strconv.Unquote

21 uses

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

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

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

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

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

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

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

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

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

	golang.org/x/tools/internal/typesinternal
		qualifier.go#L24: 			path, _ := strconv.Unquote(imp.Path.Value)

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

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

	text/template/parse
		parse.go#L331: 	t.Name, err = strconv.Unquote(name.val)
		parse.go#L675: 		s, err := strconv.Unquote(token.val)
		parse.go#L792: 		s, err := strconv.Unquote(token.val)