rust/src/libsyntax
bors 6599946272 Auto merge of #57520 - alexreg:tidy-copyright-lint, r=Mark-Simulacrum
Add lint for copyright headers to 'tidy' tool

r? @Mark-Simulacrum

CC @centril
2019-01-17 07:36:37 +00:00
..
attr Auto merge of #57321 - petrochenkov:atokens, r=nikomatsakis 2019-01-16 15:01:20 +00:00
diagnostics improve non_snake_case diagnostics 2019-01-08 13:24:38 -05:00
ext Auto merge of #57321 - petrochenkov:atokens, r=nikomatsakis 2019-01-16 15:01:20 +00:00
parse Rollup merge of #57585 - estebank:trailing-semicolon, r=petrochenkov 2019-01-14 20:31:58 +01:00
print AST/HIR: Introduce ExprKind::Err for better error recovery in the front-end 2018-12-27 15:51:36 +03:00
util AST/HIR: Introduce ExprKind::Err for better error recovery in the front-end 2018-12-27 15:51:36 +03:00
ast.rs Add PartialEq 2019-01-15 05:36:46 +09:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml Upgrade smallvec to 0.6.7 and use the new may_dangle feature. 2018-12-10 09:31:27 +11:00
config.rs Implement basic input validation for built-in attributes 2019-01-13 14:17:19 +03:00
diagnostic_list.rs Implement basic input validation for built-in attributes 2019-01-13 14:17:19 +03:00
early_buffered_lints.rs Implement basic input validation for built-in attributes 2019-01-13 14:17:19 +03:00
entry.rs Remove licenses 2018-12-25 21:08:33 -07:00
feature_gate.rs Auto merge of #57321 - petrochenkov:atokens, r=nikomatsakis 2019-01-16 15:01:20 +00:00
fold.rs Get rid of Block::recovered 2018-12-27 15:51:36 +03:00
json.rs Cosmetic improvements 2019-01-13 19:47:02 +00:00
lib.rs Implement basic input validation for built-in attributes 2019-01-13 14:17:19 +03:00
ptr.rs Remove licenses 2018-12-25 21:08:33 -07:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00
show_span.rs Remove licenses 2018-12-25 21:08:33 -07:00
source_map.rs Remove licenses 2018-12-25 21:08:33 -07:00
std_inject.rs Remove licenses 2018-12-25 21:08:33 -07:00
test.rs Implement basic input validation for built-in attributes 2019-01-13 14:17:19 +03:00
test_snippet.rs Remove licenses 2018-12-25 21:08:33 -07:00
tokenstream.rs Make TokenStream less recursive. 2019-01-08 15:08:46 +11:00
visit.rs AST/HIR: Introduce ExprKind::Err for better error recovery in the front-end 2018-12-27 15:51:36 +03: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: