const go/types.IsString

11 uses

	go/types (current package)
		basic.go#L57: 	IsString
		basic.go#L60: 	IsOrdered   = IsInteger | IsFloat | IsString
		basic.go#L62: 	IsConstType = IsBoolean | IsNumeric | IsString
		predicates.go#L21: func isString(t Type) bool         { return isBasic(t, IsString) }
		predicates.go#L43: func allString(typ Type) bool          { return allBasic(typ, IsString) }
		predicates.go#L45: func allNumericOrString(typ Type) bool { return allBasic(typ, IsNumeric|IsString) }
		sizes.go#L76: 		if t.Info()&IsString != 0 {
		universe.go#L57: 	String:        {String, IsString, "string"},
		universe.go#L65: 	UntypedString:  {UntypedString, IsString | IsUntyped, "untyped string"},

	golang.org/x/tools/internal/gcimporter
		iexport.go#L935: 	case types.IsString:
		iimport.go#L598: 	case types.IsString: