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
This commit is contained in:
Marshall Bowers 2024-04-16 13:18:21 -04:00 committed by GitHub
parent 1ba0bf925b
commit 9c569c8d95
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,7 @@ use zed::LanguageServerId;
use zed_extension_api::{self as zed, Result}; use zed_extension_api::{self as zed, Result};
struct ZigExtension { struct ZigExtension {
cached_binary: Option<String>, cached_binary_path: Option<String>,
} }
#[derive(Clone)] #[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()) { if fs::metadata(&path).map_or(false, |stat| stat.is_file()) {
return Ok(ZlsBinary { return Ok(ZlsBinary {
path: path.clone(), 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 { Ok(ZlsBinary {
path: binary_path, path: binary_path,
environment: None, environment: None,
@ -114,7 +114,7 @@ impl ZigExtension {
impl zed::Extension for ZigExtension { impl zed::Extension for ZigExtension {
fn new() -> Self { fn new() -> Self {
Self { Self {
cached_binary: None, cached_binary_path: None,
} }
} }