Skip to content

Rollup of 7 pull requests #73246

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 20 commits into from
Jun 11, 2020
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
c379fb5
remove extra space from crate-level doctest names
euclio May 13, 2020
6f01576
Try_run must only be used if toolstate is populated
Mark-Simulacrum Jun 7, 2020
8826298
Show `SyntaxContext` in formatted `Span` debug output
Aaron1011 Jun 5, 2020
5541f68
Handle assembler warnings properly
Amanieu Jun 9, 2020
dc230c0
Clean up E0648 explanation
GuillaumeGomez Jun 10, 2020
28946b3
Track span of function in method calls, and use this in #[track_caller]
Aaron1011 Jun 9, 2020
6e4d0b4
Update Clippy for MethodCall changes
Aaron1011 Jun 9, 2020
f69a2a6
Fix pprust-expr-roundtrip
Aaron1011 Jun 10, 2020
bbf497b
Add doc comments
Aaron1011 Jun 10, 2020
e5f3b94
Clippy fixes
Aaron1011 Jun 10, 2020
9d36fa3
Fix test
Aaron1011 Jun 10, 2020
34bb6d0
Cleanup docs
Amanieu Jun 11, 2020
ddacc67
Add a suggestion to use unused asm arguments in comments
Amanieu Jun 11, 2020
f23f6ac
Rollup merge of #72180 - euclio:rustdoc-test-extra-space, r=Dylan-DPC
Dylan-DPC Jun 11, 2020
80fce36
Rollup merge of #73012 - Aaron1011:feature/span-debug-ctxt, r=matthew…
Dylan-DPC Jun 11, 2020
8d62099
Rollup merge of #73097 - Mark-Simulacrum:clippy-fail, r=oli-obk
Dylan-DPC Jun 11, 2020
b341115
Rollup merge of #73169 - Amanieu:asm-warnings, r=petrochenkov
Dylan-DPC Jun 11, 2020
84b9145
Rollup merge of #73182 - Aaron1011:feature/call-fn-span, r=matthewjasper
Dylan-DPC Jun 11, 2020
6b418b3
Rollup merge of #73207 - GuillaumeGomez:cleanup-e0648, r=Dylan-DPC
Dylan-DPC Jun 11, 2020
8650df5
Rollup merge of #73230 - Amanieu:asm-unused2, r=petrochenkov
Dylan-DPC Jun 11, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix pprust-expr-roundtrip
  • Loading branch information
Aaron1011 committed Jun 10, 2020
commit f69a2a6cbd38a13c039fd1f1114424fe0e55b14a
4 changes: 2 additions & 2 deletions src/test/ui-fulldeps/pprust-expr-roundtrip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ fn iter_exprs(depth: usize, f: &mut dyn FnMut(P<Expr>)) {
2 => {
let seg = PathSegment::from_ident(Ident::from_str("x"));
iter_exprs(depth - 1, &mut |e| g(ExprKind::MethodCall(
seg.clone(), vec![e, make_x()])));
seg.clone(), vec![e, make_x()], DUMMY_SP)));
iter_exprs(depth - 1, &mut |e| g(ExprKind::MethodCall(
seg.clone(), vec![make_x(), e])));
seg.clone(), vec![make_x(), e], DUMMY_SP)));
},
3..=8 => {
let op = Spanned {
Expand Down