index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
tools
/
rust-analyzer
/
crates
/
hir
Age
Commit message (
Expand
)
Author
Lines
2024-12-20
Fix a case where completion was unable to expand a macro
Chayim Refael Friedman
-4
/
+4
2024-12-16
fix: Fix path qualified auto-importing completions not working with re-exports
Lukas Wirth
-5
/
+20
2024-12-16
Report unresolved idents for implicit captures in `format_args!()`
Chayim Refael Friedman
-16
/
+21
2024-12-15
internal: Show mir eval errors on hover with debug env var set
Lukas Wirth
-72
/
+28
2024-12-13
Merge pull request #18674 from Veykril/push-lrxotqknvxvr
Lukas Wirth
-12
/
+22
2024-12-13
Show expansion errors in expand_macro feature
Lukas Wirth
-12
/
+22
2024-12-12
internal: Implement `naked_asm!` builtin
Lukas Wirth
-0
/
+1
2024-12-11
feat: preserve order of parameters in extract_functions
roife
-0
/
+12
2024-12-05
fix: Resolve generic parameters within use captures
Lukas Wirth
-0
/
+12
2024-12-05
Parse lifetime bounds in lifetime param into TypeBoundList
Lukas Wirth
-0
/
+4
2024-12-04
Complete diagnostics in ty lowering groundwork
Chayim Refael Friedman
-29
/
+228
2024-12-04
Lay the foundation for diagnostics in ty lowering, and implement a first diag...
Chayim Refael Friedman
-13
/
+95
2024-12-04
Store some hir_def Paths in the type ref source maps
Chayim Refael Friedman
-10
/
+16
2024-12-04
Merge pull request #18609 from ChayimFriedman2/unsafe-coverage
Lukas Wirth
-9
/
+13
2024-12-04
Extend reported unsafe operations
Chayim Refael Friedman
-9
/
+13
2024-12-04
Complete derive helper attributes
Chayim Refael Friedman
-0
/
+16
2024-11-25
Fix a bug when synthetic AST node were searched in the AST ID map and caused ...
Chayim Refael Friedman
-3
/
+10
2024-11-06
Add `direct_supertraits(…)` HIR-level method to `hir::Trait` type
Vincent Esche
-1
/
+6
2024-11-06
Refactor `hir::Trait`'s existing `items_with_supertraits(…)` method based o...
Vincent Esche
-2
/
+1
2024-11-06
Add `pub fn all_supertraits(…)` HIR-level method to `hir::Trait` type
Vincent Esche
-0
/
+5
2024-11-04
Support new #[rustc_intrinsic] attribute and fallback bodies
Lukas Wirth
-11
/
+8
2024-11-03
Allow interpreting consts and statics with interpret function command
Lukas Wirth
-15
/
+16
2024-11-02
Allow static initializers to be const evaluated
Lukas Wirth
-1
/
+40
2024-10-31
Move child_by_source from hir-def to hir
Lukas Wirth
-2
/
+276
2024-10-30
Merge pull request #18436 from Veykril/lw-yvkqwpnwsouo
Lukas Wirth
-1
/
+16
2024-10-29
Style hover messages a bit differently
Lukas Wirth
-1
/
+16
2024-10-28
Cleanup TypeRef lowering
Chayim Refael Friedman
-10
/
+11
2024-10-28
Merge pull request #18074 from ChayimFriedman2/typeref-source-map
Lukas Wirth
-95
/
+143
2024-10-27
Merge pull request #18410 from Veykril/veykril/push-lvwxpnowqrxk
Lukas Wirth
-0
/
+4
2024-10-27
Invert token iteration order in macro mapping
Lukas Wirth
-0
/
+4
2024-10-27
Merge pull request #18418 from ChayimFriedman2/explicitly-disable
Lukas Wirth
-5
/
+10
2024-10-27
Split `macro-error` diagnostic so users can ignore only parts of it
Chayim Refael Friedman
-5
/
+10
2024-10-25
Only construct a resolver in macro descension when needed
Lukas Wirth
-13
/
+19
2024-10-25
Shrink `TypeRef` from 16 from 32 bytes
Chayim Refael Friedman
-5
/
+5
2024-10-25
Fix memory usage calculation's queries list
Chayim Refael Friedman
-21
/
+29
2024-10-25
Build source map for `hir_def::TypeRef`s
Chayim Refael Friedman
-71
/
+111
2024-10-24
minor: Remove intermediate allocations
Lukas Wirth
-2
/
+1
2024-10-22
Implement semitransparent hygiene
Chayim Refael Friedman
-29
/
+59
2024-10-22
Merge pull request #18254 from ChayimFriedman2/fix-mut
Lukas Wirth
-110
/
+111
2024-10-22
Auto merge of #18370 - duncpro:goto-def-ranges, r=Veykril
bors
-0
/
+27
2024-10-22
tidy
Duncan Proctor
-2
/
+1
2024-10-22
resolve range patterns to the their struct types
Duncan Proctor
-0
/
+28
2024-10-22
Fix new nightly lints
Lukas Wirth
-1
/
+1
2024-10-22
Auto merge of #18362 - duncpro:goto-def-ranges, r=Veykril
bors
-8
/
+36
2024-10-22
tidy
Duncan Proctor
-1
/
+1
2024-10-22
goto definition on RangeFrom, RangeFull, RangeTo, and RangeToInclusive links ...
Duncan Proctor
-3
/
+11
2024-10-21
Move explicit range handling out of goto_definition, use OperatorClass instead
duncanproctor
-8
/
+28
2024-10-21
fix: Fix token downmapping failing for include! inputs
Lukas Wirth
-26
/
+54
2024-10-20
Store patterns desugared from destructuring assignments in source map
Chayim Refael Friedman
-99
/
+102
2024-10-20
Handle destructuring assignments uniformly
Chayim Refael Friedman
-12
/
+10
[next]