rust/tests/target/chains-visual.rs

155 lines
4.3 KiB
Rust
Raw Normal View History

// rustfmt-normalize_comments: true
// rustfmt-single_line_if_else_max_width: 0
2017-11-13 08:25:50 +01:00
// rustfmt-indent_style: Visual
2016-04-27 22:08:54 +02:00
// Test chain formatting.
fn main() {
// Don't put chains on a single line if it wasn't so in source.
2017-03-28 00:25:59 +02:00
let a = b.c.d.1.foo(|x| x + 1);
2016-04-27 22:08:54 +02:00
2017-03-28 00:25:59 +02:00
bbbbbbbbbbbbbbbbbbb.ccccccccccccccccccccccccccccccccccccc
.ddddddddddddddddddddddddddd();
2016-04-27 22:08:54 +02:00
bbbbbbbbbbbbbbbbbbb.ccccccccccccccccccccccccccccccccccccc
.ddddddddddddddddddddddddddd
.eeeeeeee();
// Test case where first chain element isn't a path, but is shorter than
// the size of a tab.
x().y(|| match cond() {
2017-11-13 08:42:04 +01:00
true => (),
false => (),
});
2016-04-27 22:08:54 +02:00
2017-11-13 08:42:04 +01:00
loong_func().quux(move || if true {
1
} else {
2
});
2016-04-27 22:08:54 +02:00
some_fuuuuuuuuunction().method_call_a(aaaaa, bbbbb, |c| {
let x = c;
x
});
2017-08-07 08:17:57 +02:00
some_fuuuuuuuuunction().method_call_a(aaaaa, bbbbb, |c| {
let x = c;
x
})
.method_call_b(aaaaa, bbbbb, |c| {
let x = c;
x
});
2016-04-27 22:08:54 +02:00
fffffffffffffffffffffffffffffffffff(a, {
SCRIPT_TASK_ROOT.with(|root| {
2017-11-13 09:37:56 +01:00
*root.borrow_mut() = Some(&script_task);
});
2016-04-27 22:08:54 +02:00
});
2017-11-13 08:42:04 +01:00
let suuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuum = xxxxxxx.map(|x| x + 5)
.map(|x| x / 2)
.fold(0,
|acc, x| acc + x);
2016-04-27 22:08:54 +02:00
aaaaaaaaaaaaaaaa.map(|x| {
2017-11-13 09:37:56 +01:00
x += 1;
x
})
2016-04-27 22:08:54 +02:00
.filter(some_mod::some_filter)
}
fn floaters() {
2017-11-13 08:42:04 +01:00
let z = Foo { field1: val1,
field2: val2, };
let x = Foo { field1: val1,
field2: val2, }.method_call()
2016-04-27 22:08:54 +02:00
.method_call();
let y = if cond {
val1
} else {
val2
2017-08-07 08:17:57 +02:00
}.method_call();
2016-04-27 22:08:54 +02:00
{
match x {
PushParam => {
// params are 1-indexed
2017-11-13 08:42:04 +01:00
stack.push(mparams[match cur.to_digit(10) {
Some(d) => d as usize - 1,
None => return Err("bad param number".to_owned()),
}].clone());
2016-04-27 22:08:54 +02:00
}
}
}
if cond {
some();
} else {
none();
2017-08-07 08:17:57 +02:00
}.bar()
2016-04-27 22:08:54 +02:00
.baz();
2017-08-07 08:17:57 +02:00
Foo { x: val }.baz(|| {
2017-11-13 09:37:56 +01:00
force();
multiline();
})
2017-08-07 08:17:57 +02:00
.quux();
2016-04-27 22:08:54 +02:00
2017-11-13 08:42:04 +01:00
Foo { y: i_am_multi_line,
z: ok, }.baz(|| {
2017-11-13 09:37:56 +01:00
force();
multiline();
})
2016-04-27 22:08:54 +02:00
.quux();
2017-07-21 10:55:52 +02:00
a + match x {
2017-07-26 10:43:17 +02:00
true => "yay!",
false => "boo!",
2017-08-07 08:17:57 +02:00
}.bar()
2016-04-27 22:08:54 +02:00
}
fn is_replaced_content() -> bool {
2017-03-28 00:25:59 +02:00
constellat.send(ConstellationMsg::ViewportConstrained(self.id, constraints))
.unwrap();
2016-04-27 22:08:54 +02:00
}
fn issue587() {
a.b::<()>(c);
std::mem::transmute(dl.symbol::<()>("init").unwrap())
}
fn issue_1389() {
2017-08-07 08:17:57 +02:00
let names = String::from_utf8(names)?.split('|')
.map(str::to_owned)
.collect();
}
fn issue1217() -> Result<Mnemonic, Error> {
2017-08-07 08:17:57 +02:00
let random_chars: String = OsRng::new()?.gen_ascii_chars()
.take(self.bit_length)
.collect();
Ok(Mnemonic::new(&random_chars))
}
fn issue1236(options: Vec<String>) -> Result<Option<String>> {
2017-08-07 08:17:57 +02:00
let process = Command::new("dmenu").stdin(Stdio::piped())
.stdout(Stdio::piped())
.spawn()
.chain_err(|| "failed to spawn dmenu")?;
}
fn issue1434() {
for _ in 0..100 {
2017-08-07 08:17:57 +02:00
let prototype_id =
PrototypeIdData::from_reader::<_, B>(&mut self.file_cursor).chain_err(|| {
2017-11-13 08:42:04 +01:00
format!("could not read prototype ID at offset {:#010x}",
current_offset)
2017-06-12 06:01:41 +02:00
})?;
}
}