(name string, throw bool)
| 30 | } |
| 31 | |
| 32 | func (o *objectGoMapReflect) strToKey(name string, throw bool) reflect.Value { |
| 33 | if o.keyType.Kind() == reflect.String { |
| 34 | return reflect.ValueOf(name).Convert(o.keyType) |
| 35 | } |
| 36 | return o.toKey(newStringValue(name), throw) |
| 37 | } |
| 38 | |
| 39 | func (o *objectGoMapReflect) _getKey(key reflect.Value) Value { |
| 40 | if !key.IsValid() { |
no test coverage detected