about summary refs log tree commit diff
path: root/src/librustc_span
AgeCommit message (Collapse)AuthorLines
2020-01-10Remove unnecessary `const_fn` feature gatesDylan MacKenzie-1/+0
This flag opts out of the min-const-fn checks entirely, which is usually not what we want. The few cases where the flag is still necessary have been annotated.
2020-01-10Fix `next_point` to be unicode awareEsteban Küber-1/+1
2020-01-10Introduce `#![feature(half_open_range_patterns)]`.Mazdak Farrokhzad-0/+1
This feature adds `X..`, `..X`, and `..=X` patterns.
2020-01-09Add `const_trait_bound_opt_out` feature gateDylan MacKenzie-0/+1
2020-01-09Add `const_trait_impl` feature gateDylan MacKenzie-0/+1
2020-01-08span_to_lines: account for DUMMY_SPMazdak Farrokhzad-2/+3
2020-01-06Improve hygiene of `newtype_index`Matthew Jasper-1/+0
Also add unit tests
2020-01-05Remove rustc_hir reexports in rustc::hir.Mazdak Farrokhzad-1/+1
2020-01-03Auto merge of #67768 - wesleywiser:dnm_test_perf_65244, r=Mark-Simulacrumbors-2/+0
Revert #65244 for performance reasons This reverts commit f35517ee861dc012ccc26083dd4520045e2c4f6f. Revert #65244 so we can see if it is the cause of the performance issue in #67706 cc https://github.com/rust-lang/rust/issues/67644
2020-01-01Rename `syntax_pos` to `rustc_span` in source codeVadim Petrochenkov-1/+1
2019-12-31Revert "core: add IntoFuture trait and support for await"Wesley Wiser-2/+0
This reverts commit f35517ee861dc012ccc26083dd4520045e2c4f6f.
2019-12-30Make things build againVadim Petrochenkov-2/+2
2019-12-30Rename directories for some crates from `syntax_x` to `rustc_x`Vadim Petrochenkov-0/+5794
`syntax_expand` -> `rustc_expand` `syntax_pos` -> `rustc_span` `syntax_ext` -> `rustc_builtin_macros`