()
| 152 | } |
| 153 | |
| 154 | func (v *Value) isDaselValue() bool { |
| 155 | cur := v.value |
| 156 | for cur.Kind() == reflect.Interface && !cur.IsNil() { |
| 157 | cur = cur.Elem() |
| 158 | } |
| 159 | return cur.Type() == reflect.TypeFor[*Value]() |
| 160 | } |
| 161 | |
| 162 | func (v *Value) daselValue() (*Value, error) { |
| 163 | if v.isDaselValue() { |
no test coverage detected