type google.golang.org/protobuf/internal/encoding/text.NameKind

8 uses

	google.golang.org/protobuf/internal/encoding/text (current package)
		decode_token.go#L68: type NameKind uint8
		decode_token.go#L72: 	IdentName NameKind = iota + 1
		decode_token.go#L77: func (t NameKind) String() string {
		decode_token.go#L149: func (t Token) NameKind() NameKind {
		decode_token.go#L151: 		return NameKind(t.attrs &^ hasSeparator)
		decode_token.go#L170: 	panic(fmt.Sprintf("Token is not an IdentName: %s:%s", t.kind, NameKind(t.attrs&^hasSeparator)))
		decode_token.go#L178: 	panic(fmt.Sprintf("Token is not a TypeName: %s:%s", t.kind, NameKind(t.attrs&^hasSeparator)))
		decode_token.go#L186: 		panic(fmt.Sprintf("Token is not a FieldNumber: %s:%s", t.kind, NameKind(t.attrs&^hasSeparator)))