We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9405116 commit a3375c1Copy full SHA for a3375c1
crates/ra_ide/src/display/function_signature.rs
@@ -129,7 +129,6 @@ impl FunctionSignature {
129
for field in variant.fields(db).into_iter() {
130
let ty = field.signature_ty(db);
131
let raw_param = format!("{}", ty.display(db));
132
- dbg!(&raw_param);
133
if let Some(param_type) = raw_param.split(':').nth(1).and_then(|it| it.get(1..)) {
134
parameter_types.push(param_type.to_string());
135
} else {
0 commit comments