rust/src/libsyntax
bors 190a6c41cf Auto merge of #50096 - alexcrichton:less-simd-warnings, r=michaelwoerister
Tweak some warnings around #[target_feature]

This commit fixes up some issues discovered when getting the `stdsimd` crate's CI compiling again.
2018-04-24 20:59:15 +00:00
..
diagnostics Allow raw identifiers in diagnostic macros. 2018-03-18 13:27:56 -05:00
ext rustc: Tweak custom attribute capabilities 2018-04-20 19:56:16 -07:00
parse Auto merge of #48946 - PramodBisht:issues/48636, r=estebank 2018-04-23 01:36:51 +00:00
print Auto merge of #49993 - nnethercote:shrink-Token, r=alexcrichton 2018-04-18 14:44:54 +00:00
util AST/HIR: Merge field access expressions for named and numeric fields 2018-04-12 23:02:09 +03:00
abi.rs
ast.rs Auto merge of #49993 - nnethercote:shrink-Token, r=alexcrichton 2018-04-18 14:44:54 +00:00
attr.rs Implementation of #[repr(packed(n))] RFC 1399. 2018-04-11 22:13:13 +10:00
build.rs
Cargo.toml Remove syntax and syntax_pos thread locals 2018-03-14 11:56:01 +01:00
codemap.rs CodeMap functions refactored. 2018-03-18 20:46:29 -03:00
config.rs Rename ast::Variant_::name into ident + Fix rebase 2018-04-06 11:48:19 +03:00
diagnostic_list.rs Fix missed i128 feature gates 2018-03-26 08:37:56 -05:00
edition.rs add EDITIONS_NAME_LIST, make edition tracked, enforce that only stable editions are allowed to be used on non-nightly builds 2018-04-19 21:03:21 -07:00
entry.rs
feature_gate.rs Auto merge of #50096 - alexcrichton:less-simd-warnings, r=michaelwoerister 2018-04-24 20:59:15 +00:00
fold.rs AST/HIR: Merge field access expressions for named and numeric fields 2018-04-12 23:02:09 +03:00
json.rs Require the code mapper to be thread-safe 2018-03-15 00:43:03 +01:00
lib.rs Auto merge of #49698 - SimonSapin:unicode-for-everyone, r=alexcrichton 2018-04-12 00:35:33 +00:00
ptr.rs syntax: Rename P::unwrap into P::into_inner 2017-12-17 02:21:29 +03:00
README.md Replace many of the last references to readmes 2018-03-16 12:43:22 -05:00
show_span.rs
std_inject.rs Reorder injection of std to get better compilation error 2018-04-16 12:28:30 -07:00
str.rs
test_snippet.rs Remove syntax and syntax_pos thread locals 2018-03-14 11:56:01 +01:00
test.rs Don't allow #[should_panic] with non-() tests 2018-04-23 07:13:29 -07:00
tokenstream.rs proc_macro: Stay on the "use the cache" path more 2018-04-18 19:36:48 -07:00
visit.rs AST/HIR: Merge field access expressions for named and numeric fields 2018-04-12 23:02:09 +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: