(&self)
| 227 | } |
| 228 | |
| 229 | pub fn function_defs(&self) -> Option<&[FunctionDefinition]> { |
| 230 | match self { |
| 231 | BinaryIndexedView::Module(module) => Some(module.function_defs()), |
| 232 | BinaryIndexedView::Script(_) => None, |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | pub fn function_def_at( |
| 237 | &self, |
no outgoing calls