rust/src/libsyntax
Mazdak Farrokhzad 2c3e5d3de0 - remove syntax::{span_warn!, span_err!, span_fatal!. struct_err!}
- remove syntax::{help!, span_help!, span_note!}
- remove unused syntax::{struct_span_fatal, struct_span_err_or_warn!, span_err_or_warn!}
- lintify check_for_bindings_named_same_as_variants + conflicting_repr_hints
- inline syntax::{struct_span_warn!, diagnostic_used!}
- stringify_error_code! -> error_code! & use it more.
- find_plugin_registrar: de-fatalize an error
- de-fatalize metadata errors
- move type_error_struct! to rustc_typeck
- struct_span_err! -> rustc_errors
2020-01-08 04:25:33 +01:00
..
ast libsyntax: Unconfigure tests during normal build 2019-08-02 01:59:01 +03:00
attr - remove syntax::{span_warn!, span_err!, span_fatal!. struct_err!} 2020-01-08 04:25:33 +01:00
expand Rename `syntax_pos` to `rustc_span` in source code 2020-01-01 09:15:18 +03:00
feature_gate - remove syntax::{span_warn!, span_err!, span_fatal!. struct_err!} 2020-01-08 04:25:33 +01:00
print Normalize `syntax::symbol` imports. 2020-01-02 13:57:04 +01:00
util syntax::map_in_place: leave fixme 2020-01-02 19:31:38 +01:00
Cargo.toml Rename `syntax_pos` to `rustc_span` in source code 2020-01-01 09:15:18 +03:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00
ast.rs Normalize `syntax::source_map` imports. 2020-01-02 13:57:04 +01:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
early_buffered_lints.rs Format the world 2019-12-22 17:42:47 -05:00
entry.rs Normalize `syntax::symbol` imports. 2020-01-02 13:57:04 +01:00
lib.rs - remove syntax::{span_warn!, span_err!, span_fatal!. struct_err!} 2020-01-08 04:25:33 +01:00
mut_visit.rs Normalize `syntax::source_map` imports. 2020-01-02 13:57:04 +01:00
ptr.rs Format the world 2019-12-22 17:42:47 -05:00
show_span.rs Format the world 2019-12-22 17:42:47 -05:00
token.rs Normalize `syntax::symbol` imports. 2020-01-02 13:57:04 +01:00
tokenstream.rs Rename `syntax_pos` to `rustc_span` in source code 2020-01-01 09:15:18 +03:00
visit.rs Rename `syntax_pos` to `rustc_span` in source code 2020-01-01 09:15:18 +03: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: