(ctx *Context)
| 14 | // Build can change later module initialization or class construction behavior. |
| 15 | type ValueSpec interface { |
| 16 | Materialize(ctx *Context) (*Value, error) |
| 17 | } |
| 18 | |
| 19 | func materializeValueSpecSafely(ctx *Context, spec ValueSpec) (value *Value, err error) { |
no outgoing calls
no test coverage detected