| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-01-02 | make `panictry!` private to libsyntax | Andy Russell | -24/+44 | |
| This commit completely removes usage of the `panictry!` macro from outside libsyntax. The macro causes parse errors to be fatal, so using it in libsyntax_ext caused parse failures *within* a syntax extension to be fatal, which is probably not intended. Furthermore, this commit adds spans to diagnostics emitted by empty extensions if they were missing, à la #56491. | ||||
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 | |
| 2018-12-04 | emit error with span for empty asserts | Andy Russell | -0/+8 | |
| Fixes #55547. | ||||
| 2018-08-19 | mv (mod) codemap source_map | Donato Sciarra | -1/+1 | |
| 2018-07-12 | Deny bare trait objects in src/libsyntax_ext | ljedrz | -1/+1 | |
| 2018-05-22 | rustc: Correctly pretty-print macro delimiters | Alex Crichton | -0/+1 | |
| This commit updates the `Mac_` AST structure to keep track of the delimiters that it originally had for its invocation. This allows us to faithfully pretty-print macro invocations not using parentheses (e.g. `vec![...]`). This in turn helps procedural macros due to #43081. Closes #50840 | ||||
| 2018-05-06 | Fix assertion message generation | Shotaro Yamada | -57/+4 | |
| 2018-04-06 | Remove more duplicated spans | Vadim Petrochenkov | -1/+2 | |
| 2018-04-06 | Use `Span::apply_mark` where possible | Vadim Petrochenkov | -1/+1 | |
| 2018-03-14 | Escape stringified expression | Shotaro Yamada | -5/+63 | |
| Payload of `Literal` token must be escaped. Also print printable non-ASCII characters. | ||||
| 2018-03-07 | Make `assert` macro a built-in procedural macro | Shotaro Yamada | -0/+64 | |
