Look up a signature entity.
(&self, sig: SigRef)
| 50 | |
| 51 | /// Look up a signature entity. |
| 52 | pub fn contains_sig(&self, sig: SigRef) -> bool { |
| 53 | self.locations.contains_key(&sig.into()) |
| 54 | } |
| 55 | |
| 56 | /// Look up a function entity. |
| 57 | pub fn contains_fn(&self, fn_: FuncRef) -> bool { |
no test coverage detected