const go/token.STRING

16 uses

	go/token (current package)
		token.go#L34: 	STRING // "abc"
		token.go#L141: 	STRING: "STRING",

	go/parser
		parser.go#L743: 	if p.tok == token.STRING {
		parser.go#L1154: 	case token.INT, token.FLOAT, token.IMAG, token.CHAR, token.STRING:
		parser.go#L2226: 		token.IDENT, token.INT, token.FLOAT, token.IMAG, token.CHAR, token.STRING, token.FUNC, token.LPAREN, // operands
		parser.go#L2307: 	if p.tok == token.STRING {
		parser.go#L2314: 		p.expect(token.STRING) // use expect() error handling
		parser.go#L2322: 		Path:    &ast.BasicLit{ValuePos: pos, Kind: token.STRING, Value: path},

	go/printer
		nodes.go#L1519: 	if lit.Kind != token.STRING {
		nodes.go#L1550: 	return &ast.BasicLit{ValuePos: lit.ValuePos, Kind: token.STRING, Value: s}
		printer.go#L973: 			p.lastTok = token.STRING

	go/scanner
		scanner.go#L825: 			tok = token.STRING
		scanner.go#L833: 			tok = token.STRING

	golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
		linkify.go#L253: 		case token.STRING:
		linkify.go#L538: 		if n.Kind != token.STRING {

	golang.org/x/pkgsite/internal/godoc/internal/doc
		example.go#L484: 			Path:   &ast.BasicLit{Value: strconv.Quote(p), Kind: token.STRING, ValuePos: pos},