// Copyright 2019 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.packageimplimport("reflect"pref"google.golang.org/protobuf/reflect/protoreflect")typeEnumInfostruct{GoReflectTypereflect.Type// int32 kindDescpref.EnumDescriptor}func(t*EnumInfo)New(npref.EnumNumber)pref.Enum{returnreflect.ValueOf(n).Convert(t.GoReflectType).Interface().(pref.Enum)}func(t*EnumInfo)Descriptor()pref.EnumDescriptor{returnt.Desc}