| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2016-11-23 | review comments | Esteban Küber | -54/+28 | |
| 2016-11-22 | Show multiline spans in full if short enough | Esteban Küber | -105/+379 | |
| When dealing with multiline spans that span few lines, show the complete span instead of restricting to the first character of the first line. For example, instead of: ``` % ./rustc foo.rs error[E0277]: the trait bound `{integer}: std::ops::Add<()>` is not satisfied --> foo.rs:13:9 | 13 | foo(1 + bar(x, | ^ trait `{integer}: std::ops::Add<()>` not satisfied | ``` show ``` % ./rustc foo.rs error[E0277]: the trait bound `{integer}: std::ops::Add<()>` is not satisfied --> foo.rs:13:9 | 13 | foo(1 + bar(x, | ________^ starting here... 14 | | y), | |_____________^ ...ending here: trait `{integer}: std::ops::Add<()>` not satisfied | ``` | ||||
| 2016-10-18 | run rustfmt on librustc_errors folder | Srinivas Reddy Thatiparthy | -90/+84 | |
| 2016-09-28 | Allow supplying an error destination via the compiler driver | Nick Cameron | -2/+4 | |
| Allows replacing stderr with a buffer from the client. Also, some refactoring around run_compiler. | ||||
| 2016-09-15 | Fix wording for out-of-crate macro error | Jonathan Turner | -1/+2 | |
| 2016-09-11 | Use question_mark feature in librustc_errors. | Ahmed Charles | -17/+17 | |
| 2016-08-31 | Special case a few colors for Windows | Jonathan Turner | -2/+13 | |
| 2016-08-25 | prevent error message interleaving on win/unix | Jonathan Turner | -2/+85 | |
| 2016-08-19 | wording fixes in error messages | Jonathan Turner | -1/+3 | |
| 2016-08-17 | Rebase. Fix mutable iteration nit. | Jonathan Turner | -1/+1 | |
| 2016-08-17 | Replace local backtrace with def-use, repair std macro spans | Jonathan Turner | -41/+103 | |
| 2016-08-07 | Turn on new errors, json mode. Remove duplicate unicode test | Jonathan Turner | -280/+8 | |
| 2016-07-15 | Nudge travis by commenting a little | Jonathan Turner | -0/+1 | |
| 2016-07-14 | Teach EmitterWriter about the dangers of quasi-quoting | Jonathan Turner | -7/+20 | |
| 2016-07-14 | Add in styled_buffer.rs and remove some unused code | Jonathan Turner | -52/+21 | |
| 2016-07-14 | Fix up some tidy-unfriendly spacing | Jonathan Turner | -3/+7 | |
| 2016-07-14 | DCE and fixing some internal tests | Jonathan Turner | -374/+32 | |
| 2016-07-14 | Fix a couple UI test failures | Jonathan Turner | -11/+16 | |
| 2016-07-14 | Add back in old school mode | Jonathan Turner | -26/+265 | |
| 2016-07-14 | Implement latest rfc style using simpler rendering | Jonathan Turner | -40/+626 | |
| 2016-07-14 | Remove CoreEmitter and focus on Emitter | Jonathan Turner | -43/+36 | |
| 2016-07-14 | Rename emit_struct->emit | Jonathan Turner | -2/+2 | |
| 2016-07-14 | Remove emit from emitter, leaving emit_struct | Jonathan Turner | -16/+0 | |
| 2016-07-14 | Remove BasicEmitter | Jonathan Turner | -73/+63 | |
| 2016-06-23 | make old school mode a bit more configurable | Jonathan Turner | -16/+30 | |
| 2016-06-23 | Consolidate codemap tests and fix more errors for travis | Jonathan Turner | -254/+1 | |
| 2016-06-23 | Move errors from libsyntax to its own crate | Jonathan Turner | -0/+874 | |
