rust/src/libsyntax
2018-03-18 10:07:19 -05:00
..
diagnostics Initial implementation of RFC 2151, Raw Identifiers 2018-03-18 10:07:19 -05:00
ext Initial implementation of RFC 2151, Raw Identifiers 2018-03-18 10:07:19 -05:00
parse Feature gate raw identifiers. 2018-03-18 10:07:19 -05:00
print Initial implementation of RFC 2151, Raw Identifiers 2018-03-18 10:07:19 -05:00
util Replace Rc with Lrc for shared data 2018-03-02 10:48:52 +01:00
abi.rs add thiscall calling convention support 2017-05-24 16:40:03 -04:00
ast.rs Initial implementation of RFC 2151, Raw Identifiers 2018-03-18 10:07:19 -05:00
attr.rs Initial implementation of RFC 2151, Raw Identifiers 2018-03-18 10:07:19 -05: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 Auto merge of #48904 - Zoxc:code-and-file-maps, r=michaelwoerister 2018-03-17 08:54:22 +00: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 Cleanup InternedString. 2016-11-21 09:00:56 +00:00
epoch.rs Note the future epoch for epoch lints 2018-03-08 17:10:06 -08:00
feature_gate.rs Feature gate raw identifiers. 2018-03-18 10:07:19 -05:00
fold.rs Initial implementation of RFC 2151, Raw Identifiers 2018-03-18 10:07:19 -05: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 syntax: Rename P::unwrap into P::into_inner 2017-12-17 02:21:29 +03:00
README.md rework the README.md for rustc and add other readmes 2017-09-19 09:00:59 -04:00
show_span.rs use field init shorthand EVERYWHERE 2017-08-15 15:29:17 -07:00
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 syntax: Copy unstable str::char_at into libsyntax 2015-04-21 10:23:53 -07:00
test.rs AST: Make renames in imports closer to the source 2018-03-17 22:12:21 +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 AST: Make renames in imports closer to the source 2018-03-17 22:12:21 +03:00

NB: This crate is part of the Rust compiler. For an overview of the compiler as a whole, see the README.md file found in librustc.

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.