@@ -132,7 +132,7 @@ fn load_file_hashes(conn: &Connection) -> Option<HashMap<String, FileHashRow>> {
132132/// found on disk are treated as removed.
133133///
134134/// Files whose extension is outside the Rust file_collector's supported set
135- /// (e.g. `.clj`, `. gleam`, `.jl`, `.fs` — WASM-only languages) are skipped:
135+ /// (e.g. `.gleam`, `.jl`, `.fs` — WASM-only languages) are skipped:
136136/// the orchestrator's narrower collector never sees them, so absence from
137137/// `current` is a capability boundary, not a deletion. Their `nodes` and
138138/// `file_hashes` rows are owned by the JS-side WASM backfill (#967, #1068)
@@ -774,14 +774,13 @@ mod tests {
774774
775775 #[ test]
776776 fn detect_removed_skips_unsupported_extensions ( ) {
777- // Files in WASM-only languages (Clojure, Gleam, F#) live in
777+ // Files in WASM-only languages (Gleam, F#) live in
778778 // `file_hashes` because the JS-side WASM backfill writes them, but
779779 // Rust's narrower file_collector never collects them. Without this
780780 // skip, every incremental rebuild would flag them as removed and
781781 // purge their rows — the #1066 ~2s floor.
782782 let mut existing = HashMap :: new ( ) ;
783783 for path in [
784- "tests/fixtures/clojure/main.clj" ,
785784 "tests/fixtures/gleam/main.gleam" ,
786785 "tests/fixtures/fsharp/Main.fs" ,
787786 ] {
0 commit comments