Upgrade to rustfmt 0.7.1

This commit is contained in:
Jakob Stoklund Olesen
2017-01-25 15:17:27 -08:00
parent 188ffb9881
commit c132b8c328
4 changed files with 23 additions and 29 deletions

View File

@@ -66,12 +66,10 @@ impl RegBank {
}
}
}
.and_then(|offset| {
if offset < self.units {
.and_then(|offset| if offset < self.units {
Some(offset + self.first_unit)
} else {
None
}
})
}

View File

@@ -62,8 +62,7 @@ impl SourceMap {
/// Look up an entity by source name.
/// Returns the entity reference corresponding to `name`, if it exists.
pub fn lookup_str(&self, name: &str) -> Option<AnyEntity> {
split_entity_name(name).and_then(|(ent, num)| {
match ent {
split_entity_name(name).and_then(|(ent, num)| match ent {
"v" => {
Value::direct_with_number(num)
.and_then(|v| self.get_value(v))
@@ -80,7 +79,6 @@ impl SourceMap {
"fn" => self.get_fn(num).map(AnyEntity::FuncRef),
"jt" => self.get_jt(num).map(AnyEntity::JumpTable),
_ => None,
}
})
}

View File

@@ -96,10 +96,8 @@ impl ConcurrentRunner {
fn heartbeat_thread(replies: Sender<Reply>) -> thread::JoinHandle<()> {
thread::Builder::new()
.name("heartbeat".to_string())
.spawn(move || {
while replies.send(Reply::Tick).is_ok() {
.spawn(move || while replies.send(Reply::Tick).is_ok() {
thread::sleep(Duration::from_secs(1));
}
})
.unwrap()
}

View File

@@ -30,7 +30,7 @@ function banner() {
# rustfmt is installed.
#
# This version should always be bumped to the newest version available.
RUSTFMT_VERSION="0.6.3"
RUSTFMT_VERSION="0.7.1"
if cargo install --list | grep -q "^rustfmt v$RUSTFMT_VERSION"; then
banner "Rust formatting"