(&mut self, op: &ExprFunctionCall)
| 757 | } |
| 758 | |
| 759 | fn transpile_function_args(&mut self, op: &ExprFunctionCall) { |
| 760 | for expr in op.exprs.clone().into_iter() { |
| 761 | self.transpile_op(&expr); |
| 762 | } |
| 763 | } |
| 764 | |
| 765 | //Transpiles a procedure in miden. |
| 766 | //For example, if a function call is passed in as an expression, the first parameter type is u256 and the function name is "add" |
no test coverage detected