rust/src/libsyntax
Mazdak Farrokhzad 1ea0b1d274
Rollup merge of #61046 - mark-i-m:transcribe-fix, r=petrochenkov
Fix ICE with inconsistent macro matchers

Fixes #61033

r? @petrochenkov
2019-05-23 08:37:15 +02:00
..
attr Restore the old behavior of the rustdoc keyword check + Fix rebase 2019-05-22 20:20:12 +03:00
diagnostics Simplify use of keyword symbols 2019-05-22 19:48:56 +03:00
ext Rollup merge of #61046 - mark-i-m:transcribe-fix, r=petrochenkov 2019-05-23 08:37:15 +02:00
parse Restore the old behavior of the rustdoc keyword check + Fix rebase 2019-05-22 20:20:12 +03:00
print Simplify use of keyword symbols 2019-05-22 19:48:56 +03:00
util Simplify use of keyword symbols 2019-05-22 19:48:56 +03:00
ast.rs Simplify use of keyword symbols 2019-05-22 19:48:56 +03:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml Preallocate BUILTIN_ATTRIBUTES symbols and use a hash map instead of looping 2019-04-15 15:20:05 +02:00
config.rs Pass a Symbol to check_name, emit_feature_err, and related functions. 2019-05-13 09:29:22 +10:00
early_buffered_lints.rs make duplicate matcher bindings a hard error 2019-04-10 21:29:17 -05:00
entry.rs Remove the equality operation between Symbol and strings. 2019-05-13 09:31:30 +10:00
error_codes.rs Added the E0704 error with a link to the Rust reference. 2019-05-01 12:01:52 +02:00
feature_gate.rs Auto merge of #60740 - petrochenkov:kw, r=nnethercote 2019-05-23 01:50:55 +00:00
json.rs Make -Zemit-artifact-notifications also emit the artifact type 2019-05-21 13:51:36 -07:00
lib.rs Move edition outside the hygiene lock and avoid accessing it 2019-05-21 18:17:05 +02:00
mut_visit.rs Eliminate unnecessary Ident::with_empty_ctxts 2019-05-22 19:48:56 +03:00
ptr.rs Fix fallout from #57667 2019-03-09 18:23:17 +09:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00
show_span.rs Rename rustc_errors dependency in rust 2018 crates 2019-02-13 00:28:52 +09:00
source_map.rs Move edition outside the hygiene lock and avoid accessing it 2019-05-21 18:17:05 +02:00
std_inject.rs Eliminate unnecessary Ident::with_empty_ctxts 2019-05-22 19:48:56 +03:00
test.rs Restore the old behavior of the rustdoc keyword check + Fix rebase 2019-05-22 20:20:12 +03:00
test_snippet.rs Move edition outside the hygiene lock and avoid accessing it 2019-05-21 18:17:05 +02:00
tokenstream.rs Move edition outside the hygiene lock and avoid accessing it 2019-05-21 18:17:05 +02:00
visit.rs Implement built-in await syntax 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: