rust/src/libsyntax
bors 87344aa59a Auto merge of #47574 - zilbuz:issue-14844, r=nikomatsakis
Show the used type variable when issuing a "can't use type parameters from outer function" error message

Fix #14844

r? @estebank
2018-03-10 10:52:07 +00:00
..
diagnostics Move REGISTERED_DIAGNOSTICS to a ParseSess field 2018-03-08 05:30:43 +01:00
ext Turn features() into a query. 2018-03-05 11:05:01 +01:00
parse Auto merge of #48326 - RalfJung:generic-bounds, r=petrochenkov 2018-03-09 10:45:29 +00:00
print Support parentheses in patterns under feature gate 2018-03-01 01:47:56 +03: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 Auto merge of #48326 - RalfJung:generic-bounds, r=petrochenkov 2018-03-09 10:45:29 +00:00
attr.rs Add inline to TransFnAttrs 2018-03-06 19:58:02 -05:00
build.rs rustc: Add some build scripts for librustc crates 2017-07-22 22:04:13 -07:00
Cargo.toml Try to fix a perf regression by updating log 2018-01-07 16:54:05 +01:00
codemap.rs Add codemap functions to retrieve the source before a given span 2018-03-08 22:28:50 +01:00
config.rs Make it possible to ungate features by epoch 2018-03-08 17:10:05 -08:00
diagnostic_list.rs Add inline to TransFnAttrs 2018-03-06 19:58:02 -05: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 Make it possible to ungate features by epoch 2018-03-08 17:10:05 -08:00
fold.rs Replace Rc with Lrc for shared data 2018-03-02 10:48:52 +01:00
json.rs Replace Rc with Lrc for shared data 2018-03-02 10:48:52 +01:00
lib.rs Move epochs to libsyntax 2018-03-08 17:10:03 -08: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 Replace dummy spans with empty spans 2018-02-18 00:10:40 +09:00
str.rs syntax: Copy unstable str::char_at into libsyntax 2015-04-21 10:23:53 -07:00
test.rs Replace Rc with Lrc for shared data 2018-03-02 10:48:52 +01:00
test_snippet.rs Replace Rc with Lrc for shared data 2018-03-02 10:48:52 +01:00
tokenstream.rs Glued tokens can themselves be joint. 2018-01-10 17:20:04 -08:00
visit.rs Support parentheses in patterns under feature gate 2018-03-01 01:47:56 +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.