| 11 | namespace nix::eval_cache { |
| 12 | |
| 13 | CachedEvalError::CachedEvalError(ref<AttrCursor> cursor, Symbol attr) |
| 14 | : CloneableError(cursor->root->state, "cached failure of attribute '%s'", cursor->getAttrPathStr(attr)) |
| 15 | , cursor(cursor) |
| 16 | , attr(attr) |
| 17 | { |
| 18 | } |
| 19 | |
| 20 | void CachedEvalError::force() |
| 21 | { |
nothing calls this directly
no test coverage detected