| 222 | } |
| 223 | |
| 224 | fn write_jvm_params(&self, result: &mut String, params: &[(String, Type)]) { |
| 225 | for (_param_name, param_type) in params { |
| 226 | if param_type.has_jvm_value() { |
| 227 | result.push_str(¶m_type.to_jvm_descriptor()); |
| 228 | } |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | pub fn to_jvm_descriptor_with_explicit_params(&self) -> String { |
no outgoing calls
no test coverage detected