()
| 23 | } |
| 24 | |
| 25 | func (v *Value) isDencodingMap() bool { |
| 26 | return v.UnpackKinds(reflect.Interface, reflect.Pointer).value.Type() == reflect.TypeFor[orderedmap.Map]() |
| 27 | } |
| 28 | |
| 29 | func (v *Value) dencodingMapValue() (*orderedmap.Map, error) { |
| 30 | if v.isDencodingMap() { |
no test coverage detected