Returns `true` when `offset` falls inside a `static` method body.
(&self, offset: u32)
| 787 | |
| 788 | /// Returns `true` when `offset` falls inside a `static` method body. |
| 789 | pub fn is_in_static_method(&self, offset: u32) -> bool { |
| 790 | Self::offset_in_sorted_ranges(&self.static_method_scopes, offset) |
| 791 | } |
| 792 | } |
| 793 | |
| 794 | #[cfg(test)] |
no outgoing calls
no test coverage detected