2018-06-18 20:26:36 -05:00
|
|
|
// rustfmt-use_small_heuristics: Off
|
2015-09-09 16:13:37 -05:00
|
|
|
// Test chain formatting.
|
|
|
|
|
|
|
|
fn main() {
|
2017-03-27 17:25:59 -05:00
|
|
|
let a = b.c.d.1.foo(|x| x + 1);
|
2015-09-09 16:13:37 -05:00
|
|
|
|
2017-03-06 16:28:25 -06:00
|
|
|
bbbbbbbbbbbbbbbbbbb.ccccccccccccccccccccccccccccccccccccc.ddddddddddddddddddddddddddd();
|
2015-09-09 16:13:37 -05:00
|
|
|
|
2017-03-27 17:01:44 -05:00
|
|
|
bbbbbbbbbbbbbbbbbbb
|
|
|
|
.ccccccccccccccccccccccccccccccccccccc
|
2016-04-22 02:03:36 -05:00
|
|
|
.ddddddddddddddddddddddddddd
|
|
|
|
.eeeeeeee();
|
2015-09-09 16:13:37 -05:00
|
|
|
|
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.
|
2016-04-13 15:36:59 -05:00
|
|
|
x().y(|| match cond() {
|
2017-06-11 23:01:41 -05:00
|
|
|
true => (),
|
|
|
|
false => (),
|
|
|
|
});
|
2015-09-09 16:17:31 -05:00
|
|
|
|
2017-11-02 07:38:20 -05:00
|
|
|
loong_func().quux(move || {
|
|
|
|
if true {
|
|
|
|
1
|
|
|
|
} else {
|
|
|
|
2
|
|
|
|
}
|
2017-06-11 23:01:41 -05:00
|
|
|
});
|
2015-09-09 16:13:37 -05:00
|
|
|
|
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
|
2018-07-11 21:05:50 -05:00
|
|
|
}).method_call_b(aaaaa, bbbbb, |c| {
|
2015-10-08 16:07:19 -05:00
|
|
|
let x = c;
|
|
|
|
x
|
|
|
|
});
|
|
|
|
|
|
|
|
fffffffffffffffffffffffffffffffffff(a, {
|
2017-09-02 18:10:12 -05:00
|
|
|
SCRIPT_TASK_ROOT.with(|root| {
|
|
|
|
*root.borrow_mut() = Some(&script_task);
|
|
|
|
});
|
2015-10-08 16:07:19 -05:00
|
|
|
});
|
2015-09-09 16:14:09 -05:00
|
|
|
|
2017-03-06 16:28:25 -06:00
|
|
|
let suuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuum =
|
|
|
|
xxxxxxx.map(|x| x + 5).map(|x| x / 2).fold(0, |acc, x| acc + x);
|
2015-09-09 16:14:54 -05:00
|
|
|
|
2017-12-04 19:02:49 -06:00
|
|
|
body.fold(Body::new(), |mut body, chunk| {
|
|
|
|
body.extend(chunk);
|
|
|
|
Ok(body)
|
|
|
|
}).and_then(move |body| {
|
|
|
|
let req = Request::from_parts(parts, body);
|
|
|
|
f(req).map_err(|_| io::Error::new(io::ErrorKind::Other, ""))
|
|
|
|
});
|
|
|
|
|
2017-03-27 17:01:44 -05:00
|
|
|
aaaaaaaaaaaaaaaa
|
|
|
|
.map(|x| {
|
2017-06-11 23:01:41 -05:00
|
|
|
x += 1;
|
|
|
|
x
|
2018-07-11 21:05:50 -05:00
|
|
|
}).filter(some_mod::some_filter)
|
2015-09-09 16:13:37 -05:00
|
|
|
}
|
2015-10-18 10:56:13 -05:00
|
|
|
|
|
|
|
fn floaters() {
|
|
|
|
let z = Foo {
|
|
|
|
field1: val1,
|
|
|
|
field2: val2,
|
|
|
|
};
|
|
|
|
|
|
|
|
let x = Foo {
|
2017-05-23 08:13:29 -05:00
|
|
|
field1: val1,
|
|
|
|
field2: val2,
|
|
|
|
}.method_call()
|
2018-07-11 21:05:50 -05:00
|
|
|
.method_call();
|
2015-10-18 10:56:13 -05:00
|
|
|
|
|
|
|
let y = if cond {
|
2017-05-23 08:13:29 -05:00
|
|
|
val1
|
|
|
|
} else {
|
|
|
|
val2
|
|
|
|
}.method_call();
|
2015-10-18 10:56:13 -05:00
|
|
|
|
|
|
|
{
|
|
|
|
match x {
|
|
|
|
PushParam => {
|
|
|
|
// params are 1-indexed
|
2017-06-11 23:01:41 -05:00
|
|
|
stack.push(
|
|
|
|
mparams[match cur.to_digit(10) {
|
|
|
|
Some(d) => d as usize - 1,
|
|
|
|
None => return Err("bad param number".to_owned()),
|
|
|
|
}].clone(),
|
|
|
|
);
|
2015-10-18 10:56:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if cond {
|
2017-05-23 08:13:29 -05:00
|
|
|
some();
|
|
|
|
} else {
|
|
|
|
none();
|
|
|
|
}.bar()
|
2018-07-11 21:05:50 -05:00
|
|
|
.baz();
|
2015-10-18 10:56:13 -05:00
|
|
|
|
2017-11-24 01:17:06 -06:00
|
|
|
Foo {
|
|
|
|
x: val,
|
|
|
|
}.baz(|| {
|
|
|
|
force();
|
|
|
|
multiline();
|
2018-07-11 21:05:50 -05:00
|
|
|
}).quux();
|
2015-10-18 10:56:13 -05:00
|
|
|
|
|
|
|
Foo {
|
2017-05-23 08:13:29 -05:00
|
|
|
y: i_am_multi_line,
|
|
|
|
z: ok,
|
|
|
|
}.baz(|| {
|
2017-06-11 23:01:41 -05:00
|
|
|
force();
|
|
|
|
multiline();
|
2018-07-11 21:05:50 -05:00
|
|
|
}).quux();
|
2015-10-18 10:56:13 -05:00
|
|
|
|
2017-07-21 03:55:52 -05:00
|
|
|
a + match x {
|
|
|
|
true => "yay!",
|
|
|
|
false => "boo!",
|
|
|
|
}.bar()
|
2015-10-18 10:56:13 -05:00
|
|
|
}
|
2015-10-23 13:36:38 -05:00
|
|
|
|
|
|
|
fn is_replaced_content() -> bool {
|
2017-03-06 16:28:25 -06:00
|
|
|
constellat.send(ConstellationMsg::ViewportConstrained(self.id, constraints)).unwrap();
|
2015-10-23 13:36:38 -05:00
|
|
|
}
|
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();
|
2017-03-27 17:25:59 -05:00
|
|
|
let loooooooooooooooooooooooooooooooooooooooooong =
|
|
|
|
does_this?.look?.good?.should_we_break?.after_the_first_question_mark?;
|
2017-04-24 02:50:11 -05:00
|
|
|
let yyyy = expr?.another?.another?.another?.another?.another?.another?.another?.another?.test();
|
2017-03-27 17:25:59 -05:00
|
|
|
let zzzz = expr?.another?.another?.another?.another?;
|
2016-05-09 13:07:59 -05:00
|
|
|
let aaa = x??????????????????????????????????????????????????????????????????????????;
|
2016-05-09 13:11:25 -05:00
|
|
|
|
2018-05-07 16:23:14 -05:00
|
|
|
let y = a
|
|
|
|
.very
|
2016-05-12 14:50:43 -05:00
|
|
|
.loooooooooooooooooooooooooooooooooooooong()
|
|
|
|
.chain()
|
|
|
|
.inside()
|
|
|
|
.weeeeeeeeeeeeeee()?
|
|
|
|
.test()
|
|
|
|
.0
|
|
|
|
.x;
|
2016-05-27 03:33:19 -05:00
|
|
|
|
2017-11-24 01:17:06 -06:00
|
|
|
parameterized(f, substs, def_id, Ns::Value, &[], |tcx| tcx.lookup_item_type(def_id).generics)?;
|
2016-05-27 03:33:19 -05:00
|
|
|
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| {
|
2017-06-11 23:01:41 -05:00
|
|
|
let tap = ty::Binder(TraitAndProjections(principal, projections));
|
|
|
|
in_binder(f, tcx, &ty::Binder(""), Some(tap))
|
|
|
|
})?;
|
2016-05-28 15:50:25 -05:00
|
|
|
}
|
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()))?;
|
|
|
|
}
|
|
|
|
}
|
2017-11-07 17:25:09 -06:00
|
|
|
|
|
|
|
fn issue2126() {
|
|
|
|
{
|
|
|
|
{
|
|
|
|
{
|
|
|
|
{
|
|
|
|
{
|
2018-05-07 16:23:14 -05:00
|
|
|
let x = self
|
|
|
|
.span_from(sub_span.expect("No span found for struct arant variant"));
|
2017-11-07 17:25:09 -06:00
|
|
|
self.sspanpan_from_span(
|
|
|
|
sub_span.expect("No span found for struct variant"),
|
|
|
|
);
|
|
|
|
let x = self.spanpan_from_span(
|
|
|
|
sub_span.expect("No span found for struct variant"),
|
|
|
|
)?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-11-28 21:34:09 -06:00
|
|
|
|
|
|
|
// #2200
|
|
|
|
impl Foo {
|
|
|
|
pub fn from_ast(diagnostic: &::errors::Handler, attrs: &[ast::Attribute]) -> Attributes {
|
|
|
|
let other_attrs = attrs
|
|
|
|
.iter()
|
|
|
|
.filter_map(|attr| {
|
|
|
|
attr.with_desugared_doc(|attr| {
|
|
|
|
if attr.check_name("doc") {
|
|
|
|
if let Some(mi) = attr.meta() {
|
|
|
|
if let Some(value) = mi.value_str() {
|
2017-11-29 02:29:06 -06:00
|
|
|
doc_strings.push(DocFragment::Include(
|
2018-03-25 17:38:39 -05:00
|
|
|
line, attr.span, filename, contents,
|
2017-11-29 02:29:06 -06:00
|
|
|
));
|
2017-11-28 21:34:09 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2018-07-11 21:05:50 -05:00
|
|
|
}).collect();
|
2017-11-28 21:34:09 -06:00
|
|
|
}
|
|
|
|
}
|
2018-02-05 18:36:29 -06:00
|
|
|
|
|
|
|
// #2415
|
|
|
|
// Avoid orphan in chain
|
|
|
|
fn issue2415() {
|
|
|
|
let base_url = (|| {
|
|
|
|
// stuff
|
|
|
|
|
|
|
|
Ok((|| {
|
|
|
|
// stuff
|
|
|
|
Some(value.to_string())
|
|
|
|
})().ok_or("")?)
|
|
|
|
})().unwrap_or_else(|_: Box<::std::error::Error>| String::from(""));
|
|
|
|
}
|
2018-07-11 21:08:16 -05:00
|
|
|
|
|
|
|
impl issue_2786 {
|
|
|
|
fn thing(&self) {
|
|
|
|
foo(|a| {
|
|
|
|
println!("a");
|
|
|
|
println!("b");
|
|
|
|
}).bar(|c| {
|
|
|
|
println!("a");
|
|
|
|
println!("b");
|
|
|
|
}).baz(|c| {
|
|
|
|
println!("a");
|
|
|
|
println!("b");
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn issue_2773() {
|
|
|
|
let bar = Some(0);
|
|
|
|
bar.or_else(|| {
|
|
|
|
// do stuff
|
|
|
|
None
|
|
|
|
}).or_else(|| {
|
|
|
|
// do other stuff
|
|
|
|
None
|
|
|
|
}).and_then(|val| {
|
|
|
|
// do this stuff
|
|
|
|
None
|
|
|
|
});
|
|
|
|
}
|