Files
rust/src/libsyntax
bors 46805805ab Auto merge of #60984 - matthewjasper:borrowck-error-reporting-cleanup, r=pnkfelix
Borrowck error reporting cleanup

* Don't show variables created by desugarings in borrowck errors
* Move "conflict error" reporting to it's own module, so that `error_reporting` contains only common error reporting methods.
* Remove unused `ScopeTree` parameter.

r? @pnkfelix
2019-05-24 03:07:07 +00:00
..
2019-05-23 12:46:41 +03:00
2019-05-22 19:48:56 +03:00
2019-05-23 12:46:24 +03:00
2018-12-25 21:08:33 -07:00
2019-03-09 18:23:17 +09:00
2018-11-26 15:03:13 -06:00
2019-05-07 14:45:53 -07:00

The syntax crate contains those things concerned purely with syntax that is, the AST ("abstract syntax tree"), parser, pretty-printer, lexer, macro expander, and utilities for traversing ASTs.

For more information about how these things work in rustc, see the rustc guide: