(self, execute_data: &mut ExecuteData, index: usize)
| 41 | } |
| 42 | |
| 43 | pub fn get_mut_parameter(self, execute_data: &mut ExecuteData, index: usize) -> &mut ZVal { |
| 44 | let index = match self { |
| 45 | ApiStyle::OO => index, |
| 46 | ApiStyle::Procedural => index + 1, |
| 47 | }; |
| 48 | execute_data.get_mut_parameter(index) |
| 49 | } |
| 50 | |
| 51 | pub fn validate_num_args( |
| 52 | self, execute_data: &mut ExecuteData, num: usize, |
no outgoing calls
no test coverage detected