This replaces the use std::time::SystemTime, since application code prefers jiff::Timestamp anyways.
M2NAH3DCKREU74FXJSQDDRA35LP55VVCD6Z2UH5UCAL7TOTFNNQQC let last_modified_time = working_copy.modified_time(path.as_str()).unwrap_or(SystemTime::now());
let last_modified_time = match working_copy.modified_time(path.as_str()) {Ok(modified_time) => match Timestamp::try_from(modified_time) {Ok(converted_timestamp) => converted_timestamp,Err(error) => {tracing::error!(message = "jiff::Timestamp::TryFrom<std::time::SystemTime> failed",?error);Timestamp::now()}},Err(error) => {tracing::error!(message = "Failed to get modified time from working copy",?error);Timestamp::now()}};
CreditSource::Untracked => LineAnnotation::Untracked {// TODO: return the current time if `TextDocument::get_is_dirty()`timestamp: Timestamp::try_from(open_file.contents.modified_time).map_err(|error| {napi::Error::from_reason(format!("Failed to parse timestamp {:#?}: {error}",open_file.contents.modified_time))})?,},