rust/src/libsyntax
bors 727eabd681 Auto merge of #53662 - kennytm:rollup, r=kennytm
Rollup of 16 pull requests

Successful merges:

 - #53311 (Window Mutex: Document that we properly initialize the SRWLock)
 - #53503 (Discourage overuse of mem::forget)
 - #53545 (Fix #50865: ICE on impl-trait returning functions reaching private items)
 - #53559 (add macro check for lint)
 - #53562 (Lament the invincibility of the Turbofish)
 - #53563 (use String::new() instead of String::from(""), "".to_string(), "".to_owned() or "".into())
 - #53592 (docs: minor stylistic changes to str/string docs)
 - #53594 (Update RELEASES.md to include clippy-preview)
 - #53600 (Fix a grammatical mistake in "expected generic arguments" errors)
 - #53614 (update nomicon and book)
 - #53617 (tidy: Stop requiring a license header)
 - #53618 (Add missing fmt examples)
 - #53636 (Prefer `.nth(n)` over `.skip(n).next()`.)
 - #53644 (Use SmallVec for SmallCStr)
 - #53664 (Remove unnecessary closure in rustc_mir/build/mod.rs)
 - #53666 (Added rustc_codegen_llvm to compiler documentation.)
2018-08-24 17:02:23 +00:00
..
attr mv (mod) codemap source_map 2018-08-19 23:01:00 +02:00
diagnostics Use optimized SmallVec implementation 2018-08-23 10:45:53 +03:00
ext Rollup merge of #53563 - matthiaskrgr:String, r=varkor 2018-08-24 16:44:35 +08:00
parse Rollup merge of #53563 - matthiaskrgr:String, r=varkor 2018-08-24 16:44:35 +08:00
print Auto merge of #52602 - scottmcm:tryblock-expr, r=nikomatsakis 2018-08-23 11:46:24 +00:00
util Auto merge of #52602 - scottmcm:tryblock-expr, r=nikomatsakis 2018-08-23 11:46:24 +00:00
ast.rs Auto merge of #52602 - scottmcm:tryblock-expr, r=nikomatsakis 2018-08-23 11:46:24 +00:00
build.rs rustc: Add some build scripts for librustc crates 2017-07-22 22:04:13 -07:00
Cargo.toml Use optimized SmallVec implementation 2018-08-23 10:45:53 +03:00
config.rs mv (mod) codemap source_map 2018-08-19 23:01:00 +02:00
diagnostic_list.rs Stabilize 'attr_literals' feature. 2018-08-23 19:06:07 -07:00
early_buffered_lints.rs make it a migration lint 2018-07-23 21:55:51 -05:00
entry.rs Cleanup InternedString. 2016-11-21 09:00:56 +00:00
feature_gate.rs Stabilize 'attr_literals' feature. 2018-08-23 19:06:07 -07:00
fold.rs Auto merge of #53384 - gootorov:use-servo-smallvec, r=michaelwoerister 2018-08-23 14:40:22 +00:00
json.rs mv (mod) codemap source_map 2018-08-19 23:01:00 +02:00
lib.rs Auto merge of #53384 - gootorov:use-servo-smallvec, r=michaelwoerister 2018-08-23 14:40:22 +00:00
ptr.rs Remove most of PartialEq impls from AST and HIR structures 2018-07-14 14:56:57 +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
source_map.rs use String::new() instead of String::from(""), "".to_string(), "".to_owned() or "".into() 2018-08-23 10:14:52 +02:00
std_inject.rs mv codemap source_map 2018-08-19 23:01:01 +02:00
str.rs Inline char_at() and record_width. 2018-05-13 17:16:02 +10:00
test.rs Use optimized SmallVec implementation 2018-08-23 10:45:53 +03:00
test_snippet.rs mv (mod) codemap source_map 2018-08-19 23:01:00 +02:00
tokenstream.rs TokenStream::extend 2018-08-12 22:45:32 -07:00
visit.rs Rename Catch variants to TryBlock 2018-08-19 16:30: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: