mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
Apply suggestions from code review
Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
This commit is contained in:
parent
9ea57cac0e
commit
f2c91fc5a8
2 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@ enum DetectedCase {
|
||||||
fn detect_case(ident: &str) -> DetectedCase {
|
fn detect_case(ident: &str) -> DetectedCase {
|
||||||
let trimmed_ident = ident.trim_matches('_');
|
let trimmed_ident = ident.trim_matches('_');
|
||||||
let first_lowercase =
|
let first_lowercase =
|
||||||
trimmed_ident.chars().next().map(|chr| chr.is_ascii_lowercase()).unwrap_or(false);
|
trimmed_ident.starts_with(|chr| chr.is_ascii_lowercase());
|
||||||
let mut has_lowercase = first_lowercase;
|
let mut has_lowercase = first_lowercase;
|
||||||
let mut has_uppercase = false;
|
let mut has_uppercase = false;
|
||||||
let mut has_underscore = false;
|
let mut has_underscore = false;
|
||||||
|
@ -102,7 +102,7 @@ pub fn to_camel_case(ident: &str) -> Option<String> {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Converts an identifier to a lower_snake_case form.
|
/// Converts an identifier to a lower_snake_case form.
|
||||||
/// Returns `None` if the string is already is lower_snake_case.
|
/// Returns `None` if the string is already in lower_snake_case.
|
||||||
pub fn to_lower_snake_case(ident: &str) -> Option<String> {
|
pub fn to_lower_snake_case(ident: &str) -> Option<String> {
|
||||||
// First, assume that it's UPPER_SNAKE_CASE.
|
// First, assume that it's UPPER_SNAKE_CASE.
|
||||||
match detect_case(ident) {
|
match detect_case(ident) {
|
||||||
|
|
|
@ -35,7 +35,7 @@ pub fn to_lower_snake_case(s: &str) -> String {
|
||||||
// `&& prev` is required to not insert `_` before the first symbol.
|
// `&& prev` is required to not insert `_` before the first symbol.
|
||||||
if c.is_ascii_uppercase() && prev {
|
if c.is_ascii_uppercase() && prev {
|
||||||
// This check is required to not translate `Weird_Case` into `weird__case`.
|
// This check is required to not translate `Weird_Case` into `weird__case`.
|
||||||
if buf.chars().last() != Some('_') {
|
if !buf.ends_with('_') {
|
||||||
buf.push('_')
|
buf.push('_')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue