rust/src/libsyntax
Mazdak Farrokhzad b0d374a0b1
Rollup merge of #63854 - c410-f3r:attrs-visit, r=petrochenkov
Modifies how Arg, Arm, Field, FieldPattern and Variant are visited

Part of the necessary work to accomplish #63468.
2019-08-25 02:45:04 +02:00
..
ast
attr Ident::with_empty_ctxt -> Ident::with_dummy_span 2019-08-15 20:39:26 +03:00
diagnostics Remove serialization of diagnostics to files 2019-08-20 09:55:31 -04:00
ext Rollup merge of #63854 - c410-f3r:attrs-visit, r=petrochenkov 2019-08-25 02:45:04 +02:00
feature_gate syntax: move feature_gate.rs. 2019-08-23 01:41:54 +02:00
mut_visit
parse Rollup merge of #63759 - Centril:parse-default-async-fn, r=petrochenkov 2019-08-21 11:52:25 +02:00
print initial implementation of or-pattern parsing 2019-08-17 15:55:40 +00:00
source_map syntax_pos: NO_EXPANSION/SyntaxContext::empty() -> SyntaxContext::root() 2019-08-15 20:38:12 +03:00
tokenstream syntax_pos: NO_EXPANSION/SyntaxContext::empty() -> SyntaxContext::root() 2019-08-15 20:38:12 +03:00
util Modifies how Arg, Arm, Field, FieldPattern and Variant are visited 2019-08-24 13:54:40 -03:00
ast.rs Auto merge of #61708 - dlrobertson:or-patterns-0, r=centril 2019-08-18 01:02:20 +00:00
build.rs
Cargo.toml
config.rs Merge Variant and Variant_ 2019-08-14 14:47:01 -03:00
early_buffered_lints.rs
entry.rs
error_codes.rs
json.rs
lib.rs Remove serialization of diagnostics to files 2019-08-20 09:55:31 -04:00
mut_visit.rs Modifies how Arg, Arm, Field, FieldPattern and Variant are visited 2019-08-24 13:54:40 -03:00
ptr.rs
README.md
show_span.rs
source_map.rs Rollup merge of #63525 - matklad:centraliza-file-loading, r=petrochenkov 2019-08-16 18:22:24 +02:00
tests.rs syntax_pos: NO_EXPANSION/SyntaxContext::empty() -> SyntaxContext::root() 2019-08-15 20:38:12 +03:00
tokenstream.rs hygiene: Require passing transparency explicitly to apply_mark 2019-08-23 01:44:33 +03:00
visit.rs Modifies how Arg, Arm, Field, FieldPattern and Variant are visited 2019-08-24 13:54:40 -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: