id
string
file_path
string
line
uint32
column
uint32
phase
string
processing_order
uint32
element_type
string
element_name
string
element_signature
string
syntax_data
string
symbol_data
string
type_data
string
diagnostic_data
string
processing_time_ms
uint64
timestamp
uint64
rust_version
string
analyzer_version
string
source_snippet
string
context_before
string
context_after
string
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs:336:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs
336
1
type_inference
529,801
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
pub fn from_token(token: &'a syntax::SyntaxToken) -> Self {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs:337:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs
337
1
type_inference
529,802
variable_or_return
kind
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let kind = token.kind();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs:343:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs
343
1
type_inference
529,803
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
pub fn rank_token(&self, tok: &syntax::SyntaxToken) -> usize {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs:344:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs
344
1
type_inference
529,804
variable_or_return
tok_kind
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let tok_kind = tok.kind();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs:346:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs
346
1
type_inference
529,805
variable_or_return
exact_same_kind
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let exact_same_kind = tok_kind == self.kind;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs:347:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs
347
1
type_inference
529,806
variable_or_return
both_idents
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let both_idents = exact_same_kind || (tok_kind.is_any_identifier() && self.ident_kind);
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs:348:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs
348
1
type_inference
529,807
variable_or_return
same_text
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let same_text = tok.text() == self.text;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs:350:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/lib.rs
350
1
type_inference
529,808
variable_or_return
no_tt_parent
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let no_tt_parent =
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:8:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
8
1
type_inference
529,809
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"String"}
null
3
1,754,595,407
1.86.0
0.3.2000
pub fn is_format_string(string: &ast::String) -> bool {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:18:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
18
1
type_inference
529,810
variable_or_return
lit
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let lit = string.syntax().parent().and_then(ast::Literal::cast)?;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:19:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
19
1
type_inference
529,811
variable_or_return
fa
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let fa = lit.syntax().parent().and_then(ast::FormatArgsExpr::cast)?;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:49:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
49
1
type_inference
529,812
variable_or_return
mut char_ranges
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut char_ranges = Vec::new();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:51:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
51
1
type_inference
529,813
variable_or_return
mut chars
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut chars = char_ranges
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:56:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
56
1
type_inference
529,814
variable_or_return
Some((range, first_char))
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
while let Some((range, first_char)) = chars.next() {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:57:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
57
1
type_inference
529,815
variable_or_return
'{'
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
if let '{' = first_char {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:59:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
59
1
type_inference
529,816
variable_or_return
Some((_, '{'))
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
if let Some((_, '{')) = chars.peek() {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:68:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
68
1
type_inference
529,817
variable_or_return
(_, int_char)
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let (_, int_char) = chars.peek().copied().unwrap_or_default();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:77:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
77
1
type_inference
529,818
variable_or_return
Some((_, ':'))
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
if let Some((_, ':')) = chars.peek() {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:81:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
81
1
type_inference
529,819
variable_or_return
mut cloned
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut cloned = chars.clone().take(2);
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:82:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
82
1
type_inference
529,820
variable_or_return
(_, first)
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let (_, first) = cloned.next().unwrap_or_default();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:83:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
83
1
type_inference
529,821
variable_or_return
(_, second)
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let (_, second) = cloned.next().unwrap_or_default();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:91:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
91
1
type_inference
529,822
variable_or_return
'<' | '^' | '>'
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
if let '<' | '^' | '>' = first {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:106:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
106
1
type_inference
529,823
variable_or_return
Some((_, '#'))
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
if let Some((_, '#')) = chars.peek() {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:111:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
111
1
type_inference
529,824
variable_or_return
mut cloned
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut cloned = chars.clone().take(2);
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:112:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
112
1
type_inference
529,825
variable_or_return
first
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let first = cloned.next().map(|next| next.1);
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:113:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
113
1
type_inference
529,826
variable_or_return
second
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let second = cloned.next().map(|next| next.1);
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:123:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
123
1
type_inference
529,827
variable_or_return
Some((_, '$'))
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
if let Some((_, '$')) = chars.peek() {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:144:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
144
1
type_inference
529,828
variable_or_return
next
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let next = chars.peek().map(|&(_, c)| c);
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:167:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
167
1
type_inference
529,829
variable_or_return
Some((_, '.'))
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
if let Some((_, '.')) = chars.peek() {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:180:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
180
1
type_inference
529,830
variable_or_return
Some((_, '$'))
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
if let Some((_, '$')) = chars.peek() {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:229:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
229
1
type_inference
529,831
variable_or_return
Some((_, '}'))
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
if let Some((_, '}')) = chars.peek() {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:233:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
233
1
type_inference
529,832
variable_or_return
'}'
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
} else if let '}' = first_char {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:234:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
234
1
type_inference
529,833
variable_or_return
Some((_, '}'))
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
if let Some((_, '}')) = chars.peek() {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:249:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
249
1
type_inference
529,834
variable_or_return
(range, _)
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let (range, _) = chars.next().unwrap();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:258:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
258
1
type_inference
529,835
variable_or_return
(mut range, c)
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let (mut range, c) = chars.next().unwrap();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:260:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
260
1
type_inference
529,836
variable_or_return
Some(&(r, next_char))
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
while let Some(&(r, next_char)) = chars.peek() {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:276:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
276
1
type_inference
529,837
variable_or_return
(mut range, c)
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let (mut range, c) = chars.next().unwrap();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:278:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
278
1
type_inference
529,838
variable_or_return
Some(&(r, next_char))
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
while let Some(&(r, next_char)) = chars.peek() {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:294:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
294
1
type_inference
529,839
variable_or_return
(range, _)
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let (range, _) = chars.peek().unwrap();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs:295:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string.rs
295
1
type_inference
529,840
variable_or_return
offset
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let offset = TextSize::from(1);
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:20:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
20
1
type_inference
529,841
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"String"}
null
3
1,754,595,407
1.86.0
0.3.2000
pub fn with_placeholders(args: Vec<Arg>) -> Vec<String> {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:21:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
21
1
type_inference
529,842
variable_or_return
mut placeholder_id
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut placeholder_id = 1;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:26:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
26
1
type_inference
529,843
variable_or_return
s
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let s = format!("${placeholder_id}");
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:44:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
44
1
type_inference
529,844
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"String"}
null
3
1,754,595,407
1.86.0
0.3.2000
pub fn parse_format_exprs(input: &str) -> Result<(String, Vec<Arg>), ()> {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:55:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
55
1
type_inference
529,845
variable_or_return
mut state
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut state = State::NotArg;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:56:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
56
1
type_inference
529,846
variable_or_return
mut current_expr
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"String"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut current_expr = String::new();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:57:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
57
1
type_inference
529,847
variable_or_return
mut extracted_expressions
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut extracted_expressions = Vec::new();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:58:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
58
1
type_inference
529,848
variable_or_return
mut output
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"String"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut output = String::new();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:63:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
63
1
type_inference
529,849
variable_or_return
mut inexpr_open_count
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut inexpr_open_count = 0;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:65:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
65
1
type_inference
529,850
variable_or_return
mut chars
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut chars = input.chars().peekable();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:66:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
66
1
type_inference
529,851
variable_or_return
Some(chr)
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
while let Some(chr) = chars.next() {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:123:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
123
1
type_inference
529,852
variable_or_return
trimmed
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let trimmed = current_expr.trim();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:189:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
189
1
type_inference
529,853
variable_or_return
(output, exprs)
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let (output, exprs) = parse_format_exprs(input).unwrap_or(("-".to_owned(), vec![]));
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:190:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
190
1
type_inference
529,854
variable_or_return
outcome_repr
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let outcome_repr = if !exprs.is_empty() {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs:201:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/format_string_exprs.rs
201
1
type_inference
529,855
variable_or_return
test_vector
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let test_vector = &[
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:23:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
23
1
type_inference
529,856
variable_or_return
_p
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let _p = tracing::info_span!("into_text_edit").entered();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:26:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
26
1
type_inference
529,857
variable_or_return
offset
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let offset = match anchor {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:40:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
40
1
type_inference
529,858
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"bool"}
null
3
1,754,595,407
1.86.0
0.3.2000
pub fn is_empty(&self) -> bool {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:51:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
51
1
type_inference
529,859
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
pub fn diff(from: &SyntaxNode, to: &SyntaxNode) -> TreeDiff {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:52:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
52
1
type_inference
529,860
variable_or_return
_p
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let _p = tracing::info_span!("diff").entered();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:54:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
54
1
type_inference
529,861
variable_or_return
mut diff
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut diff = TreeDiff {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:59:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
59
1
type_inference
529,862
variable_or_return
(from, to)
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let (from, to) = (from.clone().into(), to.clone().into());
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:66:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
66
1
type_inference
529,863
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"bool"}
null
3
1,754,595,407
1.86.0
0.3.2000
fn syntax_element_eq(lhs: &SyntaxElement, rhs: &SyntaxElement) -> bool {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:80:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
80
1
type_inference
529,864
variable_or_return
(lhs, rhs)
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let (lhs, rhs) = match lhs.as_node().zip(rhs.as_node()) {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:89:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
89
1
type_inference
529,865
variable_or_return
mut look_ahead_scratch
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut look_ahead_scratch = Vec::default();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:91:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
91
1
type_inference
529,866
variable_or_return
mut rhs_children
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut rhs_children = rhs.children_with_tokens();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:92:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
92
1
type_inference
529,867
variable_or_return
mut lhs_children
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut lhs_children = lhs.children_with_tokens();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:93:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
93
1
type_inference
529,868
variable_or_return
mut last_lhs
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut last_lhs = None;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:95:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
95
1
type_inference
529,869
variable_or_return
lhs_child
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let lhs_child = lhs_children.next();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:99:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
99
1
type_inference
529,870
variable_or_return
insert_pos
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let insert_pos = match last_lhs.clone() {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:123:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
123
1
type_inference
529,871
variable_or_return
mut rhs_children_clone
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut rhs_children_clone = rhs_children.clone();
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:124:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
124
1
type_inference
529,872
variable_or_return
mut insert
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let mut insert = false;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:133:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
133
1
type_inference
529,873
variable_or_return
drain
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let drain = look_ahead_scratch.drain(..);
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:135:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
135
1
type_inference
529,874
variable_or_return
insert_pos
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let insert_pos = if let Some(prev) = last_lhs.clone().filter(|_| insert) {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:176:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
176
1
type_inference
529,875
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
Line 0: Token(USE_KW@0..3 "use") -> ident
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:197:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
197
1
type_inference
529,876
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> use foo::bar;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:225:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
225
1
type_inference
529,877
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> "\n"
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:226:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
226
1
type_inference
529,878
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> use baz;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:253:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
253
1
type_inference
529,879
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> use bar;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:254:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
254
1
type_inference
529,880
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> "\n"
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:281:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
281
1
type_inference
529,881
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> use foo;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:282:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
282
1
type_inference
529,882
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> "\n"
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:311:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
311
1
type_inference
529,883
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> use foo::bar;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:312:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
312
1
type_inference
529,884
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> "\n\n "
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:368:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
368
1
type_inference
529,885
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> "\n\n"
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:369:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
369
1
type_inference
529,886
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> use crate::AstNode;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:403:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
403
1
type_inference
529,887
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
Line 2: Token(IDENT@5..14 "text_edit") -> crate
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:404:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
404
1
type_inference
529,888
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
Line 2: Token(IDENT@16..24 "TextEdit") -> AstNode
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:405:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
405
1
type_inference
529,889
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
Line 2: Token(WHITESPACE@25..27 "\n\n") -> "\n"
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:434:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
434
1
type_inference
529,890
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> ::
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:435:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
435
1
type_inference
529,891
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> fmt
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:437:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
437
1
type_inference
529,892
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> use std::hash::BuildHasherDefault;
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:438:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
438
1
type_inference
529,893
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> "\n"
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:439:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
439
1
type_inference
529,894
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> use std::ops::{self, RangeInclusive};
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:440:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
440
1
type_inference
529,895
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> "\n"
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:444:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
444
1
type_inference
529,896
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
Line 2: Token(IDENT@5..8 "std") -> std
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:463:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
463
1
type_inference
529,897
variable_or_return
Ok(x)
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
if let Ok(x) = Err(92) {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:470:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
470
1
type_inference
529,898
variable_or_return
x
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
let x = match Err(92) {
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:481:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
481
1
type_inference
529,899
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> " "
null
null
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs:482:type_inference
/home/mdupont/2025/06/27/rust-analyzer/crates/ide-db/src/syntax_helpers/tree_diff.rs
482
1
type_inference
529,900
variable_or_return
null
null
null
null
{"confidence":0.95,"inference_method":"explicit","inferred_type":"unknown"}
null
3
1,754,595,407
1.86.0
0.3.2000
-> match Err(92) {
null
null