(&self)
| 221 | } |
| 222 | |
| 223 | pub const fn is_global(&self) -> bool { |
| 224 | matches!( |
| 225 | self.scope, |
| 226 | SymbolScope::GlobalExplicit | SymbolScope::GlobalImplicit |
| 227 | ) |
| 228 | } |
| 229 | |
| 230 | pub const fn is_local(&self) -> bool { |
| 231 | matches!(self.scope, SymbolScope::Local | SymbolScope::Cell) |
no outgoing calls
no test coverage detected