You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/resolve/expr/call.rs
+2-12Lines changed: 2 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -78,9 +78,6 @@ pub fn call_callee(
78
78
.get(impl_ref)
79
79
.expect("referenced impl to exist");
80
80
81
-
dbg!(&callee.recipe);
82
-
dbg!(&imp.target);
83
-
84
81
let arg_concrete_trait = impl_poly_catalog.bake().resolve_trait(&imp.target)?;
85
82
86
83
let function = ctx.asg.funcs.get(callee.function).unwrap();
@@ -98,9 +95,6 @@ pub fn call_callee(
98
95
));
99
96
}
100
97
101
-
dbg!(&arg_concrete_trait);
102
-
dbg!(¶m_concrete_trait);
103
-
104
98
if callee
105
99
.recipe
106
100
.polymorphs
@@ -125,8 +119,7 @@ pub fn call_callee(
125
119
let num_required = function.params.required.len();
126
120
127
121
if !function.impl_params.params.is_empty(){
128
-
dbg!(&function.impl_params);
129
-
eprintln!("warning: calling functions with implementation parameters is not fully implemented yet!");
122
+
eprintln!("warning: calling functions with implementation parameters is not fully implemented yet! (more that one implementation parameter is not supported yet)");
0 commit comments