| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 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 | -314/+11 | |
| 2016-07-22 | rustc_errors: fix a few bugs | Ariel Ben-Yehuda | -3/+5 | |
| 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 fix for tabs. Move error unit tests->ui tests | Jonathan Turner | -6/+19 | |
| 2016-07-14 | Add in styled_buffer.rs and remove some unused code | Jonathan Turner | -54/+156 | |
| 2016-07-14 | Fix up some tidy-unfriendly spacing | Jonathan Turner | -3/+7 | |
| 2016-07-14 | DCE and fixing some internal tests | Jonathan Turner | -1115/+34 | |
| 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 | -192/+691 | |
| 2016-07-14 | Remove CoreEmitter and focus on Emitter | Jonathan Turner | -43/+36 | |
| 2016-07-14 | Rename emit_struct->emit | Jonathan Turner | -5/+5 | |
| 2016-07-14 | Remove emit from emitter, leaving emit_struct | Jonathan Turner | -29/+44 | |
| 2016-07-14 | Remove BasicEmitter | Jonathan Turner | -74/+64 | |
| 2016-07-05 | Specific error message for missplaced doc comments | Esteban Küber | -0/+9 | |
| Identify when documetation comments have been missplaced in the following places: * After a struct element: ```rust // file.rs: struct X { a: u8 /** document a */, } ``` ```bash $ rustc file.rs file.rs:2:11: 2:28 error: found documentation comment that doesn't document anything file.rs:2 a: u8 /** document a */, ^~~~~~~~~~~~~~~~~ file.rs:2:11: 2:28 help: doc comments must come before what they document, maybe a comment was intended with `//`? ``` * As the last line of a struct: ```rust // file.rs: struct X { a: u8, /// incorrect documentation } ``` ```bash $ rustc file.rs file.rs:3:5: 3:27 error: found a documentation comment that doesn't document anything file.rs:3 /// incorrect documentation ^~~~~~~~~~~~~~~~~~~~~~ file.rs:3:5: 3:27 help: doc comments must come before what they document, maybe a comment was intended with `//`? ``` * As the last line of a `fn`: ```rust // file.rs: fn main() { let x = 1; /// incorrect documentation } ``` ```bash $ rustc file.rs file.rs:3:5: 3:27 error: found a documentation comment that doesn't document anything file.rs:3 /// incorrect documentation ^~~~~~~~~~~~~~~~~~~~~~ file.rs:3:5: 3:27 help: doc comments must come before what they document, maybe a comment was intended with `//`? ``` Fix #27429, #30322 | ||||
| 2016-06-23 | make old school mode a bit more configurable | Jonathan Turner | -24/+68 | |
| 2016-06-23 | Move test helper functions to consolidated codemap testing | Jonathan Turner | -0/+0 | |
| 2016-06-23 | Consolidate codemap tests and fix more errors for travis | Jonathan Turner | -854/+1 | |
| 2016-06-23 | Address comments and fix travis warning | Jonathan Turner | -1/+0 | |
| 2016-06-23 | Move errors from libsyntax to its own crate | Jonathan Turner | -0/+3147 | |
