Lines Matching refs:value
14 let mut value = lit.to_string(); in concat_helper() variables
15 if value.starts_with('"') && value.ends_with('"') { in concat_helper()
16 value.remove(0); in concat_helper()
17 value.pop(); in concat_helper()
19 segments.push((value, lit.span())); in concat_helper()
22 let mut value = ident.to_string(); in concat_helper() variables
23 if value.starts_with("r#") { in concat_helper()
24 value.replace_range(0..2, ""); in concat_helper()
26 segments.push((value, ident.span())); in concat_helper()
33 let (mut value, sp) = segments.pop().expect("expected identifier before modifier"); in concat_helper()
43 "lower" => value = value.to_lowercase(), in concat_helper()
44 "upper" => value = value.to_uppercase(), in concat_helper()
47 segments.push((value, sp)); in concat_helper()