Ran rustfmt
This commit is contained in:
committed by
Jakob Stoklund Olesen
parent
9f8748ee08
commit
7edbc90d5e
@@ -112,11 +112,11 @@ impl<'a> Display for Explainer<'a> {
|
||||
|
||||
// Emit the match message itself.
|
||||
writeln!(f,
|
||||
"{} #{}{}: {}",
|
||||
if m.is_match { "Matched" } else { "Missed" },
|
||||
m.directive,
|
||||
if m.is_not { " not" } else { "" },
|
||||
m.regex)?;
|
||||
"{} #{}{}: {}",
|
||||
if m.is_match { "Matched" } else { "Missed" },
|
||||
m.directive,
|
||||
if m.is_not { " not" } else { "" },
|
||||
m.regex)?;
|
||||
|
||||
// Emit any variable definitions.
|
||||
if let Ok(found) = self.vardefs.binary_search_by_key(&m.directive, |v| v.directive) {
|
||||
|
||||
@@ -481,8 +481,8 @@ impl<'a> Parser<'a> {
|
||||
"set" => {
|
||||
last_set_loc = Some(self.loc);
|
||||
isaspec::parse_options(self.consume_line().trim().split_whitespace(),
|
||||
&mut flag_builder,
|
||||
&self.loc)?;
|
||||
&mut flag_builder,
|
||||
&self.loc)?;
|
||||
}
|
||||
"isa" => {
|
||||
last_set_loc = None;
|
||||
|
||||
Reference in New Issue
Block a user