| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-11-19 | save-analysis: fallback to using path id | Nick Cameron | -4/+17 | |
| 2018-11-16 | Auto merge of #55936 - nrc:save-rename, r=eddyb | bors | -10/+8 | |
| save-analysis: be even more aggressive about ignorning macro-generated defs r? @eddyb | ||||
| 2018-11-14 | save-analysis: be even more aggressive about ignorning macro-generated defs | Nick Cameron | -10/+8 | |
| 2018-11-11 | save-analysis: Don't panic for macro-generated use globs | Igor Matuszewski | -15/+19 | |
| Follow-up to https://github.com/rust-lang/rust/commit/c2bb7cadf24e82b80f403c09e800fe5fad504caf. | ||||
| 2018-11-07 | Rollup merge of #55734 - teresy:shorthand-fields, r=davidtwco | kennytm | -1/+1 | |
| refactor: use shorthand fields refactor: use shorthand for single fields everywhere (excluding tests). | ||||
| 2018-11-06 | refactor: use shorthand fields | teresy | -1/+1 | |
| 2018-10-31 | save analysis: don't dump macro refs | Nick Cameron | -13/+15 | |
| 2018-10-31 | save-analysis: make sure we save the def for the last segment of a path | Nick Cameron | -2/+1 | |
| 2018-10-26 | Remove redundant clone | Shotaro Yamada | -1/+1 | |
| 2018-10-26 | Fix tests and assertions; add some comments | Nick Cameron | -5/+5 | |
| 2018-10-26 | save-analysis: handle missing field names | Nick Cameron | -6/+7 | |
| FIxes https://github.com/rust-lang-nursery/rls/issues/1031 | ||||
| 2018-10-26 | dump refs for path segments in save-analysis | Nick Cameron | -4/+7 | |
| Requires adding path segments to the hir map | ||||
| 2018-10-26 | dump data for prefix path segments | Nick Cameron | -131/+22 | |
| 2018-10-26 | save-analysis: remove hacky, unnecessary code now that we have spans for ↵ | Nick Cameron | -345/+124 | |
| every ident | ||||
| 2018-10-20 | Auto merge of #55014 - ljedrz:lazyboye_unwraps, r=matthewjasper | bors | -6/+6 | |
| Prefer unwrap_or_else to unwrap_or in case of function calls/allocations The contents of `unwrap_or` are evaluated eagerly, so it's not a good pick in case of function calls and allocations. This PR also changes a few `unwrap_or`s with `unwrap_or_default`. An added bonus is that in some cases this change also reveals if the object it's called on is an `Option` or a `Result` (based on whether the closure takes an argument). | ||||
| 2018-10-19 | Deprecate the `FxHashMap()` and `FxHashSet()` constructor function hack | Oliver Scherer | -2/+2 | |
| 2018-10-19 | Prefer unwrap_or_else to unwrap_or in case of function calls/allocations | ljedrz | -6/+6 | |
| 2018-09-30 | Auto merge of #54601 - cuviper:prep-1.31, r=Mark-Simulacrum | bors | -1/+1 | |
| Bump to 1.31.0 and bootstrap from 1.30 beta Closes #54594. | ||||
| 2018-09-27 | Bump to 1.31.0 and bootstrap from 1.30 beta | Josh Stone | -1/+1 | |
| 2018-09-28 | Also remap absolute source names in save-analysis | Igor Matuszewski | -5/+12 | |
| 2018-09-28 | Minimize final diff | Igor Matuszewski | -13/+7 | |
| 2018-09-28 | Remap only source files in the command line | Igor Matuszewski | -39/+31 | |
| 2018-09-28 | Emit only necessary compilation options in save-analysis | Igor Matuszewski | -34/+46 | |
| This is `command`, `directory` and `output` file. | ||||
| 2018-09-28 | Emit used rustc invocation in the save-analysis file | Igor Matuszewski | -14/+100 | |
| 2018-09-26 | Update rustfmt and RLS | Nick Cameron | -1/+1 | |
| 2018-09-13 | introduce SelfCtor | F001 | -0/+1 | |
| 2018-09-11 | stabalize infer outlives requirements (RFC 2093). | toidiu | -1/+0 | |
| Co-authored-by: nikomatsakis | ||||
| 2018-09-03 | A few cleanups and minor improvements to save_analysis | ljedrz | -23/+16 | |
| 2018-09-03 | Auto merge of #53838 - nrc:save-generic, r=eddyb | bors | -11/+18 | |
| save-analysis: record info for the types in `where` clauses cc https://github.com/rust-lang-nursery/rls/issues/987 r? @eddyb | ||||
| 2018-09-01 | Auto merge of #53842 - estebank:various, r=petrochenkov | bors | -2/+1 | |
| Various small diagnostic and code clean up - Point at def span on incorrect `panic` or `oom` function - Use structured suggestion instead of note for `+=` that can be performed on a dereference of the left binding - Small code formatting cleanup | ||||
| 2018-09-01 | Auto merge of #53815 - F001:if-let-guard, r=petrochenkov | bors | -1/+4 | |
| refactor match guard This is the first step to implement RFC 2294: if-let-guard. Tracking issue: https://github.com/rust-lang/rust/issues/51114 The second step should be introducing another variant `IfLet` in the Guard enum. I separated them into 2 PRs for the convenience of reviewers. r? @petrochenkov | ||||
| 2018-08-30 | Format code | Esteban Küber | -2/+1 | |
| 2018-08-31 | save-analysis: record info for the types in `where` clauses | Nick Cameron | -11/+18 | |
| cc https://github.com/rust-lang-nursery/rls/issues/987 | ||||
| 2018-08-30 | Rollup merge of #53732 - emilio:foreign-fn, r=nrc | Pietro Albini | -2/+2 | |
| save-analysis: Differentiate foreign functions and statics. | ||||
| 2018-08-30 | introduce Guard enum | F001 | -1/+4 | |
| 2018-08-28 | Use FxHash{Map,Set} instead of the default Hash{Map,Set} everywhere in rustc. | Eduard-Mihai Burtescu | -2/+2 | |
| 2018-08-27 | Rename hir::map::NodeKind to hir::Node | varkor | -15/+15 | |
| 2018-08-27 | Rename hir::map::Node to hir::map::NodeKind | varkor | -15/+15 | |
| 2018-08-27 | Auto merge of #53441 - toidiu:ak-fix53419, r=nikomatsakis | bors | -0/+1 | |
| fix for late-bound regions Fix for https://github.com/rust-lang/rust/issues/53419 r? @nikomatsakis | ||||
| 2018-08-27 | save-analysis: Differentiate foreign functions and statics. | Emilio Cobos Álvarez | -2/+2 | |
| 2018-08-24 | check that adding infer-outlives requirement to all crates works | Niko Matsakis | -0/+1 | |
| 2018-08-23 | use String::new() instead of String::from(""), "".to_string(), "".to_owned() ↵ | Matthias Krüger | -1/+1 | |
| or "".into() | ||||
| 2018-08-22 | Auto merge of #53607 - GuillaumeGomez:rollup, r=GuillaumeGomez | bors | -1/+1 | |
| Rollup of 10 pull requests Successful merges: - #53418 (Mark some suggestions as MachineApplicable) - #53431 (Moved some feature gate ui tests to correct location) - #53442 (Update version of rls-data used with save-analysis) - #53504 (Set applicability for more suggestions.) - #53541 (Fix missing impl trait display as ret type) - #53544 (Point at the trait argument when using unboxed closure) - #53558 (Normalize source line and column numbers.) - #53562 (Lament the invincibility of the Turbofish) - #53574 (Suggest direct raw-pointer dereference) - #53585 (Remove super old comment on function that parses items) Failed merges: - #53472 (Use FxHash{Map,Set} instead of the default Hash{Map,Set} everywhere in rustc.) - #53563 (use String::new() instead of String::from(""), "".to_string(), "".to_owned() or "".into()) r? @ghost | ||||
| 2018-08-22 | Rollup merge of #53442 - staktrace:rlsbump, r=nrc | Guillaume Gomez | -1/+1 | |
| Update version of rls-data used with save-analysis This part 1/3 for fixing rust-lang/rust#53440. | ||||
| 2018-08-22 | Replace TyForeign with ForeignTy | varkor | -1/+1 | |
| 2018-08-22 | Rename Def::{Param, Foreign} to Def::{TyParam, TyForeign} | varkor | -2/+2 | |
| 2018-08-22 | Remove Ty prefix from Ty{Foreign|Param} | varkor | -2/+2 | |
| 2018-08-22 | Remove Ty prefix from ↵ | varkor | -5/+5 | |
| Ty{Adt|Array|Slice|RawPtr|Ref|FnDef|FnPtr|Dynamic|Closure|Generator|GeneratorWitness|Never|Tuple|Projection|Anon|Infer|Error} | ||||
| 2018-08-20 | Auto merge of #51880 - varkor:generics-hir-generalisation-followup, r=eddyb | bors | -18/+24 | |
| The Great Generics Generalisation: HIR Followup Addresses the final comments in #48149. r? @eddyb, but there are a few things I have yet to clean up. Making the PR now to more easily see when things break. cc @yodaldevoid | ||||
| 2018-08-19 | mv codemap() source_map() | Donato Sciarra | -7/+7 | |
