mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 22:01:37 +00:00
Fix mega bug
https://rust-lang.zulipchat.com/#narrow/stream/185405-t-compiler.2Fwg-rls-2.2E0/topic/Manual.20content.20is.20duplicated
This commit is contained in:
parent
64a92e2328
commit
feb252138d
5 changed files with 10 additions and 6 deletions
|
@ -4,7 +4,7 @@ use std::{fmt, path::Path};
|
|||
|
||||
use crate::{
|
||||
codegen::{self, extract_comment_blocks_with_empty_lines, reformat, Location, Mode, PREAMBLE},
|
||||
project_root, rust_files, Result,
|
||||
project_root, rust_files_in, Result,
|
||||
};
|
||||
|
||||
pub fn generate_assists_tests(mode: Mode) -> Result<()> {
|
||||
|
@ -32,7 +32,7 @@ struct Assist {
|
|||
impl Assist {
|
||||
fn collect() -> Result<Vec<Assist>> {
|
||||
let mut res = Vec::new();
|
||||
for path in rust_files(&project_root().join("crates/assists/src/handlers")) {
|
||||
for path in rust_files_in(&project_root().join("crates/assists/src/handlers")) {
|
||||
collect_file(&mut res, path.as_path())?;
|
||||
}
|
||||
res.sort_by(|lhs, rhs| lhs.id.cmp(&rhs.id));
|
||||
|
|
|
@ -27,7 +27,7 @@ struct Diagnostic {
|
|||
impl Diagnostic {
|
||||
fn collect() -> Result<Vec<Diagnostic>> {
|
||||
let mut res = Vec::new();
|
||||
for path in rust_files(&project_root()) {
|
||||
for path in rust_files() {
|
||||
collect_file(&mut res, path)?;
|
||||
}
|
||||
res.sort_by(|lhs, rhs| lhs.id.cmp(&rhs.id));
|
||||
|
|
|
@ -26,7 +26,7 @@ struct Feature {
|
|||
impl Feature {
|
||||
fn collect() -> Result<Vec<Feature>> {
|
||||
let mut res = Vec::new();
|
||||
for path in rust_files(&project_root()) {
|
||||
for path in rust_files() {
|
||||
collect_file(&mut res, path)?;
|
||||
}
|
||||
res.sort_by(|lhs, rhs| lhs.id.cmp(&rhs.id));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue