Get a locally-defined table.
(self: Pin<&mut Self>, index: DefinedTableIndex)
| 1134 | |
| 1135 | /// Get a locally-defined table. |
| 1136 | pub(crate) fn get_defined_table(self: Pin<&mut Self>, index: DefinedTableIndex) -> &mut Table { |
| 1137 | &mut self.tables_mut()[index].1 |
| 1138 | } |
| 1139 | |
| 1140 | pub(crate) fn defined_table_index_and_instance<'a>( |
| 1141 | self: Pin<&'a mut Self>, |
no test coverage detected