const google.golang.org/protobuf/internal/encoding/text.Scalar

18 uses

	google.golang.org/protobuf/internal/encoding/text (current package)
		decode.go#L132: 	case Scalar:
		decode.go#L584: 	return d.consumeToken(Scalar, size, literalValue), true
		decode_number.go#L24: 		kind:     Scalar,
		decode_string.go#L41: 		kind:  Scalar,
		decode_token.go#L25: 	Scalar // Scalar are scalar values, e.g. "string", 47, ENUM_LITERAL, true.
		decode_token.go#L46: 	case Scalar:
		decode_token.go#L196: 	if t.kind != Scalar || t.attrs != stringValue {
		decode_token.go#L204: 	if t.kind != Scalar || t.attrs != literalValue || (len(t.raw) > 0 && t.raw[0] == '-') {
		decode_token.go#L212: 	if t.kind != Scalar {
		decode_token.go#L248: 	if t.kind != Scalar || t.attrs != numberValue ||
		decode_token.go#L261: 	if t.kind != Scalar || t.attrs != numberValue ||
		decode_token.go#L274: 	if t.kind != Scalar || t.attrs != numberValue || t.numAttrs&numFloat > 0 {
		decode_token.go#L292: 	if t.kind != Scalar || t.attrs != numberValue || t.numAttrs&numFloat > 0 {
		decode_token.go#L310: 	if t.kind != Scalar {
		decode_token.go#L333: 	if t.kind != Scalar {

	google.golang.org/protobuf/encoding/prototext
		decode.go#L289: 	if tok.Kind() != text.Scalar {
		decode.go#L418: 				case text.Scalar:
		decode.go#L429: 		case text.Scalar: