rust/src/libsyntax
Simon Sapin ee67e14034 Stabilize the copy_closures and clone_closures features
In addition to the `Fn*` family of traits, closures now implement `Copy` (and similarly `Clone`) if all of the captures do.
2018-03-23 11:37:07 +01:00
..
diagnostics Auto merge of #48917 - petrochenkov:import, r=oli-obk 2018-03-18 01:50:52 +00:00
ext Auto merge of #48917 - petrochenkov:import, r=oli-obk 2018-03-18 01:50:52 +00:00
parse Rollup merge of #49117 - nivkner:fixme_fixup3, r=estebank 2018-03-22 22:43:37 +08:00
print Auto merge of #48917 - petrochenkov:import, r=oli-obk 2018-03-18 01:50:52 +00:00
util Replace Rc with Lrc for shared data 2018-03-02 10:48:52 +01:00
abi.rs
ast.rs Add some docs + Fix rebase 2018-03-17 22:29:15 +03:00
attr.rs Remove syntax and syntax_pos thread locals 2018-03-14 11:56:01 +01: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 Make it possible to ungate features by epoch 2018-03-08 17:10:05 -08:00
diagnostic_list.rs Stabilize inclusive_range_syntax language feature. 2018-03-15 16:58:02 +08:00
entry.rs
epoch.rs Note the future epoch for epoch lints 2018-03-08 17:10:06 -08:00
feature_gate.rs Stabilize the copy_closures and clone_closures features 2018-03-23 11:37:07 +01:00
fold.rs Rename Span::empty to Span::shrink_to_lo, add Span::shrink_to_hi 2018-03-17 22:12:21 +03:00
json.rs Require the code mapper to be thread-safe 2018-03-15 00:43:03 +01:00
lib.rs Remove syntax and syntax_pos thread locals 2018-03-14 11:56:01 +01:00
ptr.rs
README.md Replace many of the last references to readmes 2018-03-16 12:43:22 -05:00
show_span.rs
std_inject.rs Rename Span::empty to Span::shrink_to_lo, add Span::shrink_to_hi 2018-03-17 22:12:21 +03:00
str.rs
test_snippet.rs Remove syntax and syntax_pos thread locals 2018-03-14 11:56:01 +01:00
test.rs Rollup merge of #49117 - nivkner:fixme_fixup3, r=estebank 2018-03-22 22:43:37 +08:00
tokenstream.rs Remove syntax and syntax_pos thread locals 2018-03-14 11:56:01 +01:00
visit.rs AST: Make renames in imports closer to the source 2018-03-17 22:12:21 +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: