about summary refs log tree commit diff
path: root/src/librustc_ast_lowering/pat.rs
AgeCommit message (Collapse)AuthorLines
2020-08-30mv compiler to compiler/mark-300/+0
2020-08-17rust_ast::ast => rustc_astUjjwal Sharma-1/+1
2020-07-31Fix ICEs with `@ ..` bindingYuki Okushi-2/+0
2020-05-29fix diagnostics for `@ ..` binding pattern in tuples and tuple structsChris Simpkins-3/+30
fix comment add newline for tidy fmt error... edit suggestion message change the suggestion message to better handle cases with binding modes Apply suggestions from estebank code review Co-authored-by: Esteban Kuber <estebank@users.noreply.github.com> edits to address source review Apply suggestions from estebank code review #2 Co-authored-by: Esteban Kuber <estebank@users.noreply.github.com> update test files
2020-05-08Remove ast::{Ident, Name} reexports.Camille GILLOT-0/+1
2020-05-02Move ensure_sufficient_stack to data_structuresSimonas Kazlauskas-1/+1
We anticipate this to have uses in all sorts of crates and keeping it in `rustc_data_structures` enables access to it from more locations without necessarily pulling in the large `librustc` crate.
2020-05-02Prevent stack overflow for deeply recursive codeOliver Scherer-69/+75
2020-04-19Dogfood more or_patterns in the compilerJosh Stone-1/+1
2020-03-12ast: `Mac`/`Macro` -> `MacCall`Vadim Petrochenkov-1/+1
2020-02-29Rename `syntax` to `rustc_ast` in source codeVadim Petrochenkov-2/+2
2020-02-13fix extra subslice loweringMazdak Farrokhzad-6/+11
2020-01-26updatecomet-1/+1
2020-01-10Introduce `#![feature(half_open_range_patterns)]`.Mazdak Farrokhzad-6/+7
This feature adds `X..`, `..X`, and `..=X` patterns.
2020-01-09extract path lowering -> path.rsMazdak Farrokhzad-2/+2
2020-01-09move lower_binding_mode -> pat.rsMazdak Farrokhzad-0/+9
2020-01-09extract pattern lowering -> pat.rsMazdak Farrokhzad-0/+253