rust/src/libsyntax
Guillaume Gomez 75d226ed76
Rollup merge of #56002 - Axary:master, r=estebank
fix #55972: Erroneous self arguments on bare functions emit subpar compilation error

#55972

r? @estebank
2018-11-22 10:37:50 +01:00
..
attr Fix feature gate only being checked on first repr attr. 2018-10-31 03:28:06 +11:00
diagnostics Remove OneVector 2018-09-26 10:43:37 +02:00
ext resolve: Check resolution consistency for import paths and multi-segment macro paths 2018-11-18 13:55:58 +03:00
parse Rollup merge of #56002 - Axary:master, r=estebank 2018-11-22 10:37:50 +01:00
print Prefer unwrap_or_else to unwrap_or in case of function calls/allocations 2018-10-19 09:45:45 +02:00
util Provide specific label for patern parsing error 2018-10-28 14:38:00 -07:00
Cargo.toml Use optimized SmallVec implementation 2018-08-23 10:45:53 +03:00
README.md
ast.rs Rollup merge of #55750 - oli-obk:node_id_x, r=michaelwoerister 2018-11-15 11:04:35 +01:00
build.rs
config.rs fix typos in various places 2018-10-23 15:56:25 +02:00
diagnostic_list.rs Add a stub feature so we can still test E0705 2018-10-19 22:26:02 -07:00
early_buffered_lints.rs make it a migration lint 2018-07-23 21:55:51 -05:00
entry.rs
feature_gate.rs Stabilize `extern_crate_item_prelude` 2018-11-21 01:27:23 +03:00
fold.rs Rollup merge of #55734 - teresy:shorthand-fields, r=davidtwco 2018-11-07 21:27:00 +08:00
json.rs Rename other occs of (Code/File)Map to Source(Map/File) #51574 2018-10-29 21:26:13 +01:00
lib.rs Make `NodeId` a `newtype_index` to enable niche optimizations 2018-11-12 10:29:53 +01:00
ptr.rs Temporarily prohibit proc macro attributes placed after derives 2018-09-16 19:51:41 +03:00
show_span.rs
source_map.rs Rename other occs of (Code/File)Map to Source(Map/File) #51574 2018-10-29 21:26:13 +01:00
std_inject.rs mv codemap source_map 2018-08-19 23:01:01 +02:00
str.rs
test.rs Remove redundant clone 2018-10-26 12:07:39 +09:00
test_snippet.rs Rename other occs of (Code/File)Map to Source(Map/File) #51574 2018-10-29 21:26:13 +01:00
tokenstream.rs Auto merge of #55971 - SergioBenitez:skip-non-semantic, r=alexcrichton 2018-11-19 19:57:02 +00:00
visit.rs Auto merge of #53815 - F001:if-let-guard, r=petrochenkov 2018-09-01 20:31:29 +00:00

README.md

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: