This commit is contained in:
2025-11-15 01:46:54 +00:00
parent 8e8b73f6f2
commit d460689b45
+1 -1
View File
@@ -1559,7 +1559,7 @@ def parse_rust_file_cached(filepath_str: str, file_hash: str) -> tuple:
logger.info(f"🔧 Parsing Rust file: {filepath}") logger.info(f"🔧 Parsing Rust file: {filepath}")
rust_helper = Path("./tools/src/target/release/rust_parser") rust_helper = Path("./tools/target/release/rust_parser")
if not rust_helper.is_file(): if not rust_helper.is_file():
logger.warning(f"Rust parser binary not found: {rust_helper}. Using fallback whole-file chunk for {filepath}") logger.warning(f"Rust parser binary not found: {rust_helper}. Using fallback whole-file chunk for {filepath}")
code = filepath.read_text(encoding="utf-8") code = filepath.read_text(encoding="utf-8")