rust/src/libsyntax
Mazdak Farrokhzad 2f58c2cfc0
Rollup merge of #58075 - asettouf:master, r=varkor
Fix for issue  #58050

Hi,

a quick PR to mention in the compiler error message that `?` is a macro operator, as according to issue #58050

It passed `python x.py test src/tools/tidy`  locally, as well as the recommendation to run `/x.py test src/test/ui --stage 1 --bless`.

Let me know if anything else is needed.
2019-02-27 13:32:16 +01:00
..
attr Remove LazyTokenStream. 2019-02-18 09:46:33 +11:00
diagnostics Rollup merge of #58273 - taiki-e:rename-dependency, r=matthewjasper 2019-02-13 04:37:04 +01:00
ext Rollup merge of #58075 - asettouf:master, r=varkor 2019-02-27 13:32:16 +01:00
parse Restrict value in key-value attributes to literals 2019-02-25 22:40:38 +03:00
print Remove LazyTokenStream. 2019-02-18 09:46:33 +11:00
util rustc: doc comments 2019-02-10 23:42:32 +00:00
ast.rs Fix style nits 2019-02-18 22:22:19 +00:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml Rename rustc_errors dependency in rust 2018 crates 2019-02-13 00:28:52 +09:00
config.rs Rollup merge of #58273 - taiki-e:rename-dependency, r=matthewjasper 2019-02-13 04:37:04 +01:00
diagnostic_list.rs Implement basic input validation for built-in attributes 2019-01-13 14:17:19 +03:00
early_buffered_lints.rs Make it an incompatibility lint for now 2019-02-07 12:17:27 -06:00
entry.rs libsyntax => 2018 2019-02-07 02:33:01 +09:00
feature_gate.rs Stabilize unrestricted_attribute_tokens 2019-02-25 23:21:54 +03:00
json.rs Rollup merge of #58273 - taiki-e:rename-dependency, r=matthewjasper 2019-02-13 04:37:04 +01:00
lib.rs Rollup merge of #58074 - scottmcm:stabilize-sort_by_cached_key, r=SimonSapin 2019-02-16 14:11:28 +08:00
mut_visit.rs Rollup merge of #58476 - nnethercote:rm-LazyTokenStream, r=petrochenkov 2019-02-23 09:25:26 +01:00
ptr.rs rustc: doc comments 2019-02-10 23:42:32 +00:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06:00
show_span.rs Rename rustc_errors dependency in rust 2018 crates 2019-02-13 00:28:52 +09:00
source_map.rs Rollup merge of #58273 - taiki-e:rename-dependency, r=matthewjasper 2019-02-13 04:37:04 +01:00
std_inject.rs Use Rc<[Symbol]> instead of Vec<Symbol> to reduce # of allocs 2019-02-11 15:08:17 +01:00
test.rs Cleanup imports 2019-02-13 00:31:51 +09:00
test_snippet.rs Cleanup imports 2019-02-13 00:31:51 +09:00
tokenstream.rs Restrict value in key-value attributes to literals 2019-02-25 22:40:38 +03:00
visit.rs rustc: doc comments 2019-02-10 23:42:32 +00: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: