Gets the number of locals of this function, including parameters.
(&self)
| 237 | |
| 238 | /// Gets the number of locals of this function, including parameters. |
| 239 | pub fn get_local_count(&self) -> usize { |
| 240 | self.data.local_types.len() |
| 241 | } |
| 242 | |
| 243 | /// Gets the number of user declared locals of this function, excluding locals which have |
| 244 | /// been introduced by transformations. |
no test coverage detected