engine: resources: Consider passing in funcs if possible

Let this sit in the test resource for now.
This commit is contained in:
James Shubin
2023-08-29 20:35:04 -04:00
parent 0d381e4c91
commit 6c0775ba59
2 changed files with 8 additions and 1 deletions

View File

@@ -440,7 +440,7 @@ func Into(v Value, rv reflect.Value) error {
return Into(v.V, rv)
default:
return fmt.Errorf("cannot Into() %+v of type %s into %s", v, v.Type(), typ)
return fmt.Errorf("cannot Into() %+v of type (%T) %s into %s", v, v, v.Type(), typ)
}
}