diff --git a/packages/@winglang/wingc/src/lsp/rename_visitor.rs b/packages/@winglang/wingc/src/lsp/rename_visitor.rs index 6705cbb6077..493cc6e54c3 100644 --- a/packages/@winglang/wingc/src/lsp/rename_visitor.rs +++ b/packages/@winglang/wingc/src/lsp/rename_visitor.rs @@ -180,7 +180,7 @@ impl<'a> Visit<'a> for RenameVisitor<'a> { ExprKind::Call { arg_list, callee } => { let Some(env) = self.ctx.current_env() else { // usually the env will exist, if not- we cannot use it to resolve the super method. - // it's the same as used here: packages/@winglang/wingc/src/lsp/symbol_locator.rs + // it's the same as used here: https://github.com/winglang/wing/blob/main/packages/@winglang/wingc/src/lsp/symbol_locator.rs#L374-L376 return; }; // we need to get the struct from the callee - to get the right env