2017-01-15 19:50:27 -06:00
|
|
|
// rustfmt-normalize_comments: true
|
2016-05-29 10:58:38 -05:00
|
|
|
// rustfmt-single_line_if_else_max_width: 0
|
2017-11-04 08:24:43 -05:00
|
|
|
// rustfmt-chain_width: 100
|
2015-09-09 16:13:37 -05:00
|
|
|
// Test chain formatting.
|
|
|
|
|
|
|
|
fn main() {
|
2015-09-09 16:17:31 -05:00
|
|
|
let a = b .c
|
|
|
|
.d.1
|
|
|
|
.foo(|x| x + 1);
|
2015-09-09 16:13:37 -05:00
|
|
|
|
|
|
|
bbbbbbbbbbbbbbbbbbb.ccccccccccccccccccccccccccccccccccccc
|
|
|
|
.ddddddddddddddddddddddddddd();
|
|
|
|
|
|
|
|
bbbbbbbbbbbbbbbbbbb.ccccccccccccccccccccccccccccccccccccc.ddddddddddddddddddddddddddd.eeeeeeee();
|
|
|
|
|
2017-05-02 21:26:31 -05:00
|
|
|
let f = fooooooooooooooooooooooooooooooooooooooooooooooooooo.baaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaar;
|
|
|
|
|
2015-09-10 17:53:21 -05:00
|
|
|
// Test case where first chain element isn't a path, but is shorter than
|
|
|
|
// the size of a tab.
|
2015-09-09 16:13:37 -05:00
|
|
|
x()
|
|
|
|
.y(|| match cond() { true => (), false => () });
|
|
|
|
|
|
|
|
loong_func()
|
|
|
|
.quux(move || if true {
|
|
|
|
1
|
|
|
|
} else {
|
|
|
|
2
|
|
|
|
});
|
|
|
|
|
2015-10-08 16:07:19 -05:00
|
|
|
some_fuuuuuuuuunction()
|
|
|
|
.method_call_a(aaaaa, bbbbb, |c| {
|
|
|
|
let x = c;
|
|
|
|
x
|
|
|
|
});
|
|
|
|
|
|
|
|
some_fuuuuuuuuunction().method_call_a(aaaaa, bbbbb, |c| {
|
|
|
|
let x = c;
|
|
|
|
x
|
|
|
|
}).method_call_b(aaaaa, bbbbb, |c| {
|
|
|
|
let x = c;
|
|
|
|
x
|
|
|
|
});
|
|
|
|
|
2015-09-09 16:14:09 -05:00
|
|
|
fffffffffffffffffffffffffffffffffff(a,
|
|
|
|
{
|
|
|
|
SCRIPT_TASK_ROOT
|
|
|
|
.with(|root| {
|
|
|
|
*root.borrow_mut() = Some(&script_task);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-09-09 16:13:37 -05:00
|
|
|
let suuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuum = xxxxxxx
|
|
|
|
.map(|x| x + 5)
|
|
|
|
.map(|x| x / 2)
|
|
|
|
.fold(0, |acc, x| acc + x);
|
|
|
|
|
|
|
|
aaaaaaaaaaaaaaaa.map(|x| {
|
|
|
|
x += 1;
|
|
|
|
x
|
|
|
|
}).filter(some_mod::some_filter)
|
|
|
|
}
|
2015-10-18 10:56:13 -05:00
|
|
|
|
|
|
|
fn floaters() {
|
|
|
|
let z = Foo {
|
|
|
|
field1: val1,
|
|
|
|
field2: val2,
|
|
|
|
};
|
|
|
|
|
|
|
|
let x = Foo {
|
|
|
|
field1: val1,
|
|
|
|
field2: val2,
|
|
|
|
}.method_call().method_call();
|
|
|
|
|
|
|
|
let y = if cond {
|
|
|
|
val1
|
|
|
|
} else {
|
|
|
|
val2
|
|
|
|
}
|
|
|
|
.method_call();
|
|
|
|
|
|
|
|
{
|
|
|
|
match x {
|
|
|
|
PushParam => {
|
|
|
|
// params are 1-indexed
|
|
|
|
stack.push(mparams[match cur.to_digit(10) {
|
|
|
|
Some(d) => d as usize - 1,
|
|
|
|
None => return Err("bad param number".to_owned()),
|
|
|
|
}]
|
|
|
|
.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if cond { some(); } else { none(); }
|
|
|
|
.bar()
|
|
|
|
.baz();
|
|
|
|
|
2017-01-15 21:37:58 -06:00
|
|
|
Foo { x: val } .baz(|| { force(); multiline(); }) .quux();
|
2015-10-18 10:56:13 -05:00
|
|
|
|
|
|
|
Foo { y: i_am_multi_line, z: ok }
|
|
|
|
.baz(|| {
|
2017-01-15 21:37:58 -06:00
|
|
|
force(); multiline();
|
2015-10-18 10:56:13 -05:00
|
|
|
})
|
|
|
|
.quux();
|
|
|
|
|
|
|
|
a + match x { true => "yay!", false => "boo!" }.bar()
|
|
|
|
}
|
2015-10-23 13:36:38 -05:00
|
|
|
|
|
|
|
fn is_replaced_content() -> bool {
|
|
|
|
constellat.send(ConstellationMsg::ViewportConstrained(
|
|
|
|
self.id, constraints)).unwrap();
|
|
|
|
}
|
2015-11-13 07:53:34 -06:00
|
|
|
|
|
|
|
fn issue587() {
|
|
|
|
a.b::<()>(c);
|
|
|
|
|
|
|
|
std::mem::transmute(dl.symbol::<()>("init").unwrap())
|
|
|
|
}
|
2016-05-09 13:07:59 -05:00
|
|
|
|
|
|
|
fn try_shorthand() {
|
|
|
|
let x = expr?;
|
|
|
|
let y = expr.kaas()?.test();
|
|
|
|
let loooooooooooooooooooooooooooooooooooooooooong = does_this?.look?.good?.should_we_break?.after_the_first_question_mark?;
|
|
|
|
let yyyy = expr?.another?.another?.another?.another?.another?.another?.another?.another?.test();
|
|
|
|
let zzzz = expr?.another?.another?.another?.another?;
|
|
|
|
let aaa = x ???????????? ?????????????? ???? ????? ?????????????? ????????? ?????????????? ??;
|
2016-05-09 13:11:25 -05:00
|
|
|
|
|
|
|
let y = a.very .loooooooooooooooooooooooooooooooooooooong() .chain()
|
|
|
|
.inside() .weeeeeeeeeeeeeee()? .test() .0
|
|
|
|
.x;
|
2016-05-27 03:33:19 -05:00
|
|
|
|
|
|
|
parameterized(f,
|
|
|
|
substs,
|
|
|
|
def_id,
|
|
|
|
Ns::Value,
|
|
|
|
&[],
|
|
|
|
|tcx| tcx.lookup_item_type(def_id).generics)?;
|
|
|
|
fooooooooooooooooooooooooooo()?.bar()?.baaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaz()?;
|
2016-05-09 13:07:59 -05:00
|
|
|
}
|
2016-05-28 15:50:25 -05:00
|
|
|
|
|
|
|
fn issue_1004() {
|
|
|
|
match *self {
|
|
|
|
ty::ImplOrTraitItem::MethodTraitItem(ref i) => write!(f, "{:?}", i),
|
|
|
|
ty::ImplOrTraitItem::ConstTraitItem(ref i) => write!(f, "{:?}", i),
|
|
|
|
ty::ImplOrTraitItem::TypeTraitItem(ref i) => write!(f, "{:?}", i),
|
|
|
|
}
|
|
|
|
?;
|
|
|
|
|
|
|
|
ty::tls::with(|tcx| {
|
|
|
|
let tap = ty::Binder(TraitAndProjections(principal, projections));
|
|
|
|
in_binder(f, tcx, &ty::Binder(""), Some(tap))
|
|
|
|
})
|
|
|
|
?;
|
|
|
|
}
|
2017-06-19 08:06:08 -05:00
|
|
|
|
|
|
|
fn issue1392() {
|
|
|
|
test_method(r#"
|
|
|
|
if foo {
|
|
|
|
a();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
b();
|
|
|
|
}
|
|
|
|
"#.trim());
|
|
|
|
}
|
2017-10-18 08:02:05 -05:00
|
|
|
|
|
|
|
// #2067
|
|
|
|
impl Settings {
|
|
|
|
fn save(&self) -> Result<()> {
|
|
|
|
let mut file = File::create(&settings_path).chain_err(|| ErrorKind::WriteError(settings_path.clone()))?;
|
|
|
|
}
|
|
|
|
}
|