about summary refs log tree commit diff
path: root/compiler/rustc_hir_analysis/src/coherence/mod.rs
AgeCommit message (Expand)AuthorLines
2024-06-14Use is_lang_item more aggressivelyMichael Goulet-2/+3
2024-06-03check_is_object_safe -> is_object_safeMichael Goulet-1/+1
2024-06-01Deduplicate supertrait_def_ids codeMark Rousskov-2/+1
2024-03-11Rollup merge of #121840 - oli-obk:freeze, r=dtolnayJacob Pratt-0/+14
2024-03-07Apply `EarlyBinder` only to `TraitRef` in `ImplTraitHeader`Yoshitomo Nakanishi-4/+5
2024-02-29Forbid implementing `Freeze` even if the trait is stabilizedOli Scherer-0/+14
2024-02-13Don't reinvoke `trait_header` query twiceOli Scherer-1/+1
2024-02-13Invoke `trait_def` query only onceOli Scherer-8/+11
2024-02-13Store impl unsafety in impl trait headerOli Scherer-4/+4
2024-02-12Auto merge of #120835 - oli-obk:no_hir_coherence, r=cjgillotbors-2/+3
2024-02-12Auto merge of #120834 - oli-obk:only_local_coherence, r=lcnrbors-1/+3
2024-02-10Allow restricted trait impls in macros with `min_specialization`Zalathar-2/+6
2024-02-09Don't reinvoke `impl_trait_ref` query after it was already invokedOli Scherer-1/+1
2024-02-09Avoid accessing the HIR in the happy path of `coherent_trait`Oli Scherer-1/+2
2024-02-09A trait's local impls are trivially coherent if there are no impls.Oli Scherer-1/+3
2024-01-29Stop using `String` for error codes.Nicholas Nethercote-2/+2
2024-01-23Remove track_errors entirelyOli Scherer-25/+30
2024-01-10Rename consuming chaining methods on `DiagnosticBuilder`.Nicholas Nethercote-1/+1
2024-01-10Rename `struct_span_err!` as `struct_span_code_err!`.Nicholas Nethercote-4/+4
2024-01-08Make `DiagnosticBuilder::emit` consuming.Nicholas Nethercote-1/+1
2023-12-24Remove `Session` methods that duplicate `DiagCtxt` methods.Nicholas Nethercote-4/+4
2023-07-14refactor(rustc_middle): Substs -> GenericArgMahdi Dibaiee-1/+1
2023-06-20Make rustc_deny_explicit_impl only local as wellMichael Goulet-2/+1
2023-05-15Move expansion of query macros in rustc_middle to rustc_middle::queryJohn Kåre Alsaker-1/+1
2023-04-25Fix static string lintsclubby789-7/+2
2023-04-21Allow `LocalDefId` as the argument to `def_path_str`Oli Scherer-1/+1
2023-03-21Reduce output spamJohn Kåre Alsaker-2/+2
2023-02-22Remove type-traversal trait aliasesAlan Egerton-1/+1
2023-01-28Rename `is_object_safe` to `check_is_object_safe` to hint side effectsGary Guo-1/+1
2023-01-17Rollup merge of #104505 - WaffleLapkin:no-double-spaces-in-comments, r=jackh726Matthias Krüger-1/+1
2023-01-17Remove double spaces after dots in commentsMaybe Waffle-1/+1
2023-01-14change impl_trait_ref query to return EarlyBinder; remove bound_impl_trait_re...Kyle Matsuda-1/+1
2023-01-14change usages of impl_trait_ref to bound_impl_trait_refKyle Matsuda-1/+1
2022-11-14Add rustc_deny_explicit_implMichael Goulet-50/+16
2022-09-27rustc_typeck to rustc_hir_analysislcnr-0/+237