8000 Rollup of 10 pull requests by Centril · Pull Request #59433 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 10 pull requests #59433

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 43 commits into from
Mar 26, 2019
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
7fb1c22
promoted is still left in 2 places
Mar 16, 2019
a837b8a
cleaner code as per review
Mar 17, 2019
23c87a1
fixed all compilation errors
Mar 18, 2019
776407e
tidy checks
Mar 19, 2019
8829dda
remove visit_static from librustc::mir
Mar 20, 2019
72f8d4e
Add no_hash to query macro and move some queries over
Zoxc Mar 20, 2019
b440041
Allow itertools
Zoxc Mar 20, 2019
d060e7d
Add no_force to query macro and move some queries over
Zoxc Mar 20, 2019
52374a6
Add anon to query macro and move a query over
Zoxc Mar 20, 2019
4d0a1e4
Add eval_always to query macro and move a query over
Zoxc Mar 20, 2019
75677c4
Fix whitespace
Zoxc Mar 20, 2019
71dfb01
Update build instructions in README.md
ewk Mar 21, 2019
cf2f1bb
review fixes
Mar 20, 2019
48af718
Expand `impl FromIterator for Option` doc to include example of early…
pnkfelix Mar 20, 2019
d5a61c0
Expand `impl FromIterator for Result` doc to include examples of `Err…
pnkfelix Mar 20, 2019
37cfeb2
Add/rename checked_duration_since tests
faern Mar 22, 2019
d56b1fd
Make duration_since use checked_duration_since
faern Mar 22, 2019
1ccad16
Update sys::time impls to have checked_sub_instant
faern Mar 22, 2019
8ba1a97
Expand suggestions for type ascription parse errors
estebank Mar 13, 2019
b1a6c32
Tweak labels
estebank Mar 13, 2019
72a3089
Only suggest let assignment for type ascription if we find an equals …
estebank Mar 13, 2019
81b876b
Hide "type ascription is experimental error" unless it's the only one
estebank Mar 13, 2019
44a086e
Review comment
estebank Mar 20, 2019
d72ef21
Reword type ascription note to reduce verbosity
estebank Mar 23, 2019
752544b
adding mir::StaticKind enum for static and promoted
Mar 23, 2019
fb93f10
code review fixes
Mar 24, 2019
8d7c2bb
replace redundant note in deprecation warning
euclio Mar 24, 2019
5390414
Provide suggestion when using field access instead of path
estebank Mar 18, 2019
4beea17
Deduplicate code for path suggestion
estebank Mar 20, 2019
6315221
Update src/libcore/option.rs
killercup Mar 25, 2019
0e83e96
add missing braces
pnkfelix Mar 25, 2019
0bb36a2
Clarify `{Ord,f32,f64}::clamp` docs a little
tbu- Mar 25, 2019
28c602a
Utilize `?` instead of `return None`.
frewsxcv Mar 25, 2019
b316514
Rollup merge of #59150 - estebank:type-ascription, r=varkor
Centril Mar 26, 2019
90c2d64
Rollup merge of #59232 - saleemjaffer:mir_place_refactor, r=oli-obk
Centril Mar 26, 2019
ba55822
Rollup merge of #59267 - estebank:assoc-const-as-field, r=davidtwco
Centril Mar 26, 2019
4fbe25c
Rollup merge of #59315 - Zoxc:move-query, r=oli-obk
Centril Mar 26, 2019
e132e43
Rollup merge of #59334 - ewk:readme, r=Mark-Simulacrum
Centril Mar 26, 2019
0616b73
Rollup merge of #59362 - pnkfelix:demo-from-iterator-short-circuiting…
Centril Mar 26, 2019
e298691
Rollup merge of #59374 - faern:simplify-checked-duration-since, r=she…
Centril Mar 26, 2019
95e7a50
Rollup merge of #59389 - euclio:deprecated-suggestion, r=varkor
Centril Mar 26, 2019
0677eb1
Rollup merge of #59410 - tbu-:pr_doc_clarifyclamp, r=joshtriplett
Centril Mar 26, 2019
822b4fc
Rollup merge of #59419 - frewsxcv:frewsxcv-qu, r=varkor
Centril Mar 26, 2019
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 whitespace
  • Loading branch information
Zoxc committed Mar 20, 2019
commit 75677c45c315d03fc9eb2cd51aaf2eb21814f95f
6 changes: 3 additions & 3 deletions src/librustc_macros/src/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ struct QueryModifiers {

/// Generate a dep node based on the dependencies of the query
anon: bool,

// Always evaluate the query, ignoring its depdendencies
eval_always: bool,
}
Expand Down Expand Up @@ -403,7 +403,7 @@ pub fn rustc_queries(input: TokenStream) -> TokenStream {
};

let mut attribute_stream = quote! {};

for e in attributes.into_iter().intersperse(quote! {,}) {
attribute_stream.extend(e);
}
Expand Down Expand Up @@ -447,7 +447,7 @@ pub fn rustc_queries(input: TokenStream) -> TokenStream {
}
});
}

add_query_description_impl(&query, modifiers, &mut query_description_stream);
}
let name = &group.name;
Expand Down
0