rust/src/libsyntax
2019-04-19 10:13:45 -07:00
..
attr Make check_name generic 2019-04-15 07:23:02 +02:00
diagnostics remove lookup_char_pos_adj 2019-04-05 23:16:09 +03:00
ext make duplicate matcher bindings a hard error 2019-04-10 21:29:17 -05:00
parse Identify missing ambiguous case with best effort suggestion 2019-04-19 10:13:45 -07:00
print Auto merge of #59227 - Zoxc:fix-get, r=eddyb 2019-04-11 23:36:13 +00:00
util
ast.rs Ensure the symbols are pure strings 2019-04-15 07:23:02 +02:00
build.rs
Cargo.toml Preallocate BUILTIN_ATTRIBUTES symbols and use a hash map instead of looping 2019-04-15 15:20:05 +02:00
config.rs
early_buffered_lints.rs make duplicate matcher bindings a hard error 2019-04-10 21:29:17 -05:00
entry.rs
error_codes.rs Rename diagnositc_list into error_codes 2019-04-18 06:21:30 +09:00
feature_gate.rs whitelist rtm x86 cpu feature 2019-04-17 17:10:24 -07:00
json.rs Rollup merge of #59128 - oli-obk:colorful_json, r=mark-i-m,eddyb 2019-04-17 10:31:30 +02:00
lib.rs Auto merge of #60025 - JohnTitor:rename-files, r=petrochenkov 2019-04-18 14:52:45 +00:00
mut_visit.rs
ptr.rs
README.md
show_span.rs
source_map.rs remove lookup_char_pos_adj 2019-04-05 23:16:09 +03:00
std_inject.rs
test_snippet.rs Update more unit test to new API 2019-04-02 16:14:59 +02:00
test.rs Fix comments around test harness generation 2019-04-17 12:02:04 +03:00
tokenstream.rs
visit.rs

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: