(&self)
| 56 | } |
| 57 | |
| 58 | pub fn identifiers(&self) -> &[Identifier] { |
| 59 | match self { |
| 60 | BinaryIndexedView::Module(module) => module.identifiers(), |
| 61 | BinaryIndexedView::Script(script) => script.identifiers(), |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | pub fn identifier_at(&self, idx: IdentifierIndex) -> &IdentStr { |
| 66 | match self { |
no outgoing calls
no test coverage detected