(&self)
| 638 | /// (debug instrumentation) metadata. |
| 639 | #[cfg(feature = "debug")] |
| 640 | pub(crate) fn frame_table(&self) -> Option<wasmtime_environ::FrameTable<'_>> { |
| 641 | let data = self.frame_tables(); |
| 642 | if data.is_empty() { |
| 643 | None |
| 644 | } else { |
| 645 | let orig_text = self.text(); |
| 646 | Some( |
| 647 | wasmtime_environ::FrameTable::parse(data, orig_text) |
| 648 | .expect("Frame tables were validated on module load"), |
| 649 | ) |
| 650 | } |
| 651 | } |
| 652 | } |
| 653 | |
| 654 | fn section_name<'a>( |
nothing calls this directly
no test coverage detected