mirror of https://github.com/status-im/consul.git
22 lines
574 B
Go
22 lines
574 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package protohcl
|
|
|
|
import "google.golang.org/protobuf/reflect/protoreflect"
|
|
|
|
type FieldNamer interface {
|
|
NameField(protoreflect.FieldDescriptor) string
|
|
GetField(protoreflect.FieldDescriptors, string) protoreflect.FieldDescriptor
|
|
}
|
|
|
|
type textFieldNamer struct{}
|
|
|
|
func (textFieldNamer) NameField(fd protoreflect.FieldDescriptor) string {
|
|
return fd.TextName()
|
|
}
|
|
|
|
func (textFieldNamer) GetField(fds protoreflect.FieldDescriptors, name string) protoreflect.FieldDescriptor {
|
|
return fds.ByTextName(name)
|
|
}
|