| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2017-11-02 | Make the difference between lint codes and error codes explicit | Oliver Schneider | -2/+6 | |
| 2017-10-24 | Reduce the repetition in json error output | Oliver Schneider | -17/+9 | |
| 2017-08-30 | Make fields of `Span` private | Vadim Petrochenkov | -4/+4 | |
| 2017-08-17 | Rollup merge of #43891 - Fourchaux:master, r=steveklabnik | Corey Farwell | -1/+1 | |
| Fix typos & us spellings Fixing some typos and non en-US spellings. (Update of PR https://github.com/rust-lang/rust/pull/42812 ) | ||||
| 2017-08-15 | use field init shorthand EVERYWHERE | Zack M. Davis | -7/+7 | |
| Like #43008 (f668999), but _much more aggressive_. | ||||
| 2017-08-15 | Fix typos & us spellings | Fourchaux | -1/+1 | |
| 2017-07-21 | make JSON error byte position start at top of file | Zack M. Davis | -3/+2 | |
| The `hi` and `lo` offsets in a span are relative to a `CodeMap`, but this doesn't seem to be terribly useful for tool consumers who don't have the codemap, but might want the byte offset within an actual file? Resolves #35164. | ||||
| 2017-07-06 | Only underline suggestion if it is not the only code being shown | Esteban Küber | -1/+1 | |
| 2017-06-11 | Added consumption logic for external sources in FileMap | Inokentiy Babushkin | -1/+1 | |
| We now fetch source lines from the `external_src` member as a secondary fallback if no regular source is present, that is, if the file map belongs to an external crate and the source has been fetched from disk. | ||||
| 2017-05-16 | Rollup merge of #41957 - llogiq:clippy-libsyntax, r=petrochenkov | Mark Simulacrum | -1/+1 | |
| Fix some clippy warnings in libsyntax This is mostly removing stray ampersands, needless returns and lifetimes. Basically a lot of small changes. | ||||
| 2017-05-12 | Fix some clippy warnings in libsyntax | Andre Bogus | -1/+1 | |
| This is mostly removing stray ampersands, needless returns and lifetimes. | ||||
| 2017-05-11 | Address PR reviews | Oliver Schneider | -5/+5 | |
| 2017-05-10 | Refactor suggestion diagnostic API to allow for multiple suggestions | Oliver Schneider | -35/+33 | |
| 2017-05-02 | Auto merge of #40851 - oli-obk:multisugg, r=jonathandturner | bors | -2/+12 | |
| Minimize single span suggestions into a label changes ``` 14 | println!("☃{}", tup[0]); | ^^^^^^ | help: to access tuple elements, use tuple indexing syntax as shown | println!("☃{}", tup.0); ``` into ``` 14 | println!("☃{}", tup[0]); | ^^^^^^ to access tuple elements, use `tup.0` ``` Also makes suggestions explicit in the backend in preparation of adding multiple suggestions to a single diagnostic. Currently that's already possible, but results in a full help message + modified code snippet per suggestion, and has no rate limit (might show 100+ suggestions). | ||||
| 2017-04-26 | Implement a file-path remapping feature in support of debuginfo and ↵ | Michael Woerister | -2/+3 | |
| reproducible builds. | ||||
| 2017-04-25 | Minimize single span suggestions into a note | Oliver Schneider | -2/+12 | |
| 2017-03-29 | Merge `ExpnId` and `SyntaxContext`. | Jeffrey Seyfried | -1/+1 | |
| 2017-01-20 | Auto merge of #38955 - estebank:highlighted-diags, r=nikomatsakis | bors | -10/+10 | |
| Teach Diagnostics to highlight text Support styled `Diagnostic` output: <img width="469" alt="mismatched types error with colorized types in the note" src="https://cloud.githubusercontent.com/assets/1606434/21871227/93a84198-d815-11e6-88b1-0ede3c7e28ef.png"> Closes #37532 and #38901. r? @nikomatsakis CC @jonathandturner @nagisa @nrc | ||||
| 2017-01-17 | tolerate `None` return from `get_line` | Niko Matsakis | -1/+1 | |
| 2017-01-17 | Teach Diagnostics to highlight text | Esteban Küber | -10/+10 | |
| 2016-09-28 | Allow supplying an error destination via the compiler driver | Nick Cameron | -3/+13 | |
| Allows replacing stderr with a buffer from the client. Also, some refactoring around run_compiler. | ||||
| 2016-07-14 | Rename emit_struct->emit | Jonathan Turner | -1/+1 | |
| 2016-07-14 | Remove emit from emitter, leaving emit_struct | Jonathan Turner | -24/+1 | |
| 2016-06-23 | Move errors from libsyntax to its own crate | Jonathan Turner | -0/+369 | |
