Build a label showing a callable name and its parameter names. Works for both methods and standalone functions. Example: `regularCode($text, $frogs = ...)`
(name: &str, params: &[ParameterInfo])
| 253 | /// |
| 254 | /// Example: `regularCode($text, $frogs = ...)` |
| 255 | pub(crate) fn build_callable_label(name: &str, params: &[ParameterInfo]) -> String { |
| 256 | format!("{}({})", name, format_param_list(params)) |
| 257 | } |
| 258 | |
| 259 | /// Build the label showing the method name and parameter names. |
| 260 | /// |
no outgoing calls
no test coverage detected