rust/src/libsyntax
bors 8ae79efce3 Auto merge of #49673 - ollie27:stab, r=sfackler
Correct a few stability attributes

* `const_indexing` language feature was stabilized in 1.26.0 by #46882
* `Display` impls for `PanicInfo` and `Location` were stabilized in 1.26.0 by #47687
* `TrustedLen` is still unstable so its impls should be as well even though `RangeInclusive` was stabilized by #47813
* `!Send` and `!Sync` for `Args` and `ArgsOs` were stabilized in 1.26.0 by #48005
* `EscapeDefault` has been stable since 1.0.0 so should continue to show that even though it was moved to core in #48735

This could be backported to beta like #49612
2018-04-09 03:32:32 +00:00
..
diagnostics Allow raw identifiers in diagnostic macros. 2018-03-18 13:27:56 -05:00
ext Use Ident instead of Name in MetaItem 2018-04-06 11:52:16 +03:00
parse Use Ident instead of Name in MetaItem 2018-04-06 11:52:16 +03:00
print Inject the compiler_builtins crate whenever the core crate is injected 2018-04-07 09:24:35 +02:00
util Remove more duplicated spans 2018-04-06 11:50:49 +03:00
abi.rs add thiscall calling convention support 2017-05-24 16:40:03 -04:00
ast.rs Use Ident instead of Name in MetaItem 2018-04-06 11:52:16 +03:00
attr.rs Use Ident instead of Name in MetaItem 2018-04-06 11:52:16 +03:00
build.rs rustc: Add some build scripts for librustc crates 2017-07-22 22:04:13 -07:00
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 easy edition feature flag 2018-03-29 08:44:21 +02:00
entry.rs Cleanup InternedString. 2016-11-21 09:00:56 +00:00
feature_gate.rs Auto merge of #49673 - ollie27:stab, r=sfackler 2018-04-09 03:32:32 +00:00
fold.rs Use Ident instead of Name in MetaItem 2018-04-06 11:52:16 +03:00
json.rs Require the code mapper to be thread-safe 2018-03-15 00:43:03 +01:00
lib.rs Bump the bootstrap compiler to 1.26.0 beta 2018-04-05 07:13:45 -07: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 use field init shorthand EVERYWHERE 2017-08-15 15:29:17 -07:00
std_inject.rs Inject the compiler_builtins crate whenever the core crate is injected 2018-04-07 09:24:35 +02:00
str.rs syntax: Copy unstable str::char_at into libsyntax 2015-04-21 10:23:53 -07:00
test.rs Use Ident instead of Name in MetaItem 2018-04-06 11:52:16 +03:00
test_snippet.rs Remove syntax and syntax_pos thread locals 2018-03-14 11:56:01 +01:00
tokenstream.rs Initial implementation of RFC 2151, Raw Identifiers 2018-03-18 10:07:19 -05:00
visit.rs Remove more duplicated spans 2018-04-06 11:50:49 +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: