about summary refs log tree commit diff
path: root/compiler/rustc_interface/src/limits.rs
AgeCommit message (Collapse)AuthorLines
2025-09-08fixup limit handling codeJana Dönszelmann-67/+21
2025-02-18Move methods from `Map` to `TyCtxt`, part 2.Nicholas Nethercote-4/+4
Continuing the work started in #136466. Every method gains a `hir_` prefix, though for the ones that already have a `par_` or `try_par_` prefix I added the `hir_` after that.
2025-02-17Rename `pattern_complexity` attr as `pattern_complexity_limit`.Nicholas Nethercote-1/+1
For consistency with `recursion_limit`, `move_size_limit`, and `type_length_limit`.
2025-02-17Move `rustc_middle::limits` to `rustc_interface`.Nicholas Nethercote-0/+85
It's always good to make `rustc_middle` smaller. `rustc_interface` is the best destination, because it's the only crate that calls `get_recursive_limit`.