From 9c569c8d9527a14e94bc0e71d1a5ae69f5c6ebe1 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 16 Apr 2024 13:18:21 -0400 Subject: [PATCH] zig: Rename `cached_binary` to `cached_binary_path` (#10637) This PR renames the `cached_binary` field on the `ZigExtension` back to `cached_binary_path` to make it match the other extensions. Release Notes: - N/A --- extensions/zig/src/zig.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/extensions/zig/src/zig.rs b/extensions/zig/src/zig.rs index 72bfa1faf9..ccf243050d 100644 --- a/extensions/zig/src/zig.rs +++ b/extensions/zig/src/zig.rs @@ -3,7 +3,7 @@ use zed::LanguageServerId; use zed_extension_api::{self as zed, Result}; struct ZigExtension { - cached_binary: Option, + cached_binary_path: Option, } #[derive(Clone)] @@ -26,7 +26,7 @@ impl ZigExtension { }); } - if let Some(path) = &self.cached_binary { + if let Some(path) = &self.cached_binary_path { if fs::metadata(&path).map_or(false, |stat| stat.is_file()) { return Ok(ZlsBinary { path: path.clone(), @@ -103,7 +103,7 @@ impl ZigExtension { } } - self.cached_binary = Some(binary_path.clone()); + self.cached_binary_path = Some(binary_path.clone()); Ok(ZlsBinary { path: binary_path, environment: None, @@ -114,7 +114,7 @@ impl ZigExtension { impl zed::Extension for ZigExtension { fn new() -> Self { Self { - cached_binary: None, + cached_binary_path: None, } }