rust/src/libsyntax
Mazdak Farrokhzad 760a98fb5e
Rollup merge of #61389 - Zoxc:arena-cleanup, r=eddyb
Remove GlobalArenas and use Arena instead

r? @eddyb
2019-06-01 06:50:07 +02:00
..
attr Remove GlobalArenas and use Arena instead 2019-05-31 09:44:37 +02:00
diagnostics syntax: Turn token::Lit into a struct 2019-05-23 12:46:24 +03:00
ext Introduce and use SyntaxContext::outer_expn_info(). 2019-05-29 09:32:56 +10:00
parse Rollup merge of #61374 - VirrageS:master, r=Centril 2019-05-31 13:34:07 +02:00
print Remove ObsoleteInPlace 2019-05-24 01:27:32 +01:00
util Remove ObsoleteInPlace 2019-05-24 01:27:32 +01:00
ast.rs Add to_symbol methods. 2019-05-27 14:05:02 +10: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 Reword malformed attribute input diagnostics 2019-05-25 11:55:50 -07: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 Reword malformed attribute input diagnostics 2019-05-25 11:55:50 -07:00
json.rs Make -Zemit-artifact-notifications also emit the artifact type 2019-05-21 13:51:36 -07:00
lib.rs review comments 2019-05-24 11:50:21 -07:00
mut_visit.rs Remove ObsoleteInPlace 2019-05-24 01:27:32 +01: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 Auto merge of #61253 - nnethercote:avoid-hygiene_data-lookups, r=petrochenkov 2019-05-30 16:54:13 +00:00
std_inject.rs Avoid unnecessary internings. 2019-05-27 13:58:38 +10:00
test.rs Avoid unnecessary internings. 2019-05-27 13:58:38 +10:00
test_snippet.rs Move edition outside the hygiene lock and avoid accessing it 2019-05-21 18:17:05 +02:00
tokenstream.rs Short circuit Send and Sync impls for TokenTree 2019-05-27 08:58:05 +02:00
visit.rs Remove ObsoleteInPlace 2019-05-24 01:27:32 +01: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: