We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdffaf7 commit d260dffCopy full SHA for d260dff
ui_test/src/lib.rs
@@ -10,13 +10,13 @@ use std::sync::Mutex;
10
pub use color_eyre;
11
use color_eyre::eyre::Result;
12
use colored::*;
13
-use comments::ErrorMatch;
+use parser::ErrorMatch;
14
use regex::Regex;
15
use rustc_stderr::{Level, Message};
16
17
-use crate::comments::{Comments, Condition};
+use crate::parser::{Comments, Condition};
18
19
-mod comments;
+mod parser;
20
mod rustc_stderr;
21
#[cfg(test)]
22
mod tests;
ui_test/src/comments.rs renamed to ui_test/src/parser.rs
ui_test/src/comments/tests.rs renamed to ui_test/src/parser/tests.rs
0 commit comments