Get a reference to the inner range.
(&self)
| 29 | impl DefinedLocalsRange { |
| 30 | /// Get a reference to the inner range. |
| 31 | pub fn as_range(&self) -> &Range<u32> { |
| 32 | &self.0 |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | /// An abstraction to read the defined locals from the Wasm binary for a function. |