Build the label showing the method name and parameter names. Thin wrapper around [`build_callable_label`] for backward compatibility with callers that pass a `&MethodInfo`.
(method: &MethodInfo)
| 261 | /// Thin wrapper around [`build_callable_label`] for backward |
| 262 | /// compatibility with callers that pass a `&MethodInfo`. |
| 263 | pub(crate) fn build_method_label(method: &MethodInfo) -> String { |
| 264 | build_callable_label(&method.name, &method.parameters) |
| 265 | } |
| 266 | |
| 267 | /// Build completion items for a resolved class, filtered by access kind |
| 268 | /// and visibility scope. |
no test coverage detected