moved crates in lib/ to src/, renamed crates, modified some files' text (#660)
moved crates in lib/ to src/, renamed crates, modified some files' text (#660)
This commit is contained in:
27
cranelift/filetests/src/match_directive.rs
Normal file
27
cranelift/filetests/src/match_directive.rs
Normal file
@@ -0,0 +1,27 @@
|
||||
/// Look for a directive in a comment string.
|
||||
/// The directive is of the form "foo:" and should follow the leading `;` in the comment:
|
||||
///
|
||||
/// ; dominates: ebb3 ebb4
|
||||
///
|
||||
/// Return the comment text following the directive.
|
||||
pub fn match_directive<'a>(comment: &'a str, directive: &str) -> Option<&'a str> {
|
||||
assert!(
|
||||
directive.ends_with(':'),
|
||||
"Directive must include trailing colon"
|
||||
);
|
||||
let text = comment.trim_start_matches(';').trim_start();
|
||||
if text.starts_with(directive) {
|
||||
Some(text[directive.len()..].trim())
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_match_directive() {
|
||||
assert_eq!(match_directive("; foo: bar ", "foo:"), Some("bar"));
|
||||
assert_eq!(match_directive(" foo:bar", "foo:"), Some("bar"));
|
||||
assert_eq!(match_directive("foo:bar", "foo:"), Some("bar"));
|
||||
assert_eq!(match_directive(";x foo: bar", "foo:"), None);
|
||||
assert_eq!(match_directive(";;; foo: bar", "foo:"), Some("bar"));
|
||||
}
|
||||
Reference in New Issue
Block a user