(&'a mut self, sb_fn_id: &SBFunctionId, get_type: F)
| 120 | } |
| 121 | |
| 122 | fn insert<'a, F>(&'a mut self, sb_fn_id: &SBFunctionId, get_type: F) |
| 123 | where |
| 124 | F: FnOnce() -> SBType, |
| 125 | { |
| 126 | if !self.cache.contains_key(sb_fn_id) { |
| 127 | let ty = get_type(); |
| 128 | self.cache.insert(*sb_fn_id, ty); |
| 129 | } |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | impl Debugger { |
no outgoing calls
no test coverage detected