(v T, cache *Cache)
| 59 | } |
| 60 | |
| 61 | func Replace[T any](v T, cache *Cache) T { |
| 62 | return ReplaceWithExtra(v, cache, nil) |
| 63 | } |
| 64 | |
| 65 | func ReplaceWithExtra[T any](v T, cache *Cache, extra map[string]any) T { |
| 66 | // If there is already an error, do nothing |
no test coverage detected
searching dependent graphs…