mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
use std::starts_with
instead of iterator logic
This commit is contained in:
parent
86726e03e3
commit
2cabe6546c
3 changed files with 5 additions and 8 deletions
|
@ -255,7 +255,7 @@ impl AnalyzedDocument {
|
|||
let is_module_completion = symbol_prefix
|
||||
.split('.')
|
||||
.nth_back(1) // second to last
|
||||
.and_then(|str| str.chars().nth(0).map(|c| c.is_uppercase()))
|
||||
.map(|str| str.starts_with(|c: char| c.is_uppercase()))
|
||||
.unwrap_or(false);
|
||||
|
||||
if is_module_completion {
|
||||
|
@ -279,10 +279,8 @@ impl AnalyzedDocument {
|
|||
)
|
||||
}
|
||||
} else {
|
||||
let is_module_or_type_completion = symbol_prefix
|
||||
.chars()
|
||||
.nth(0)
|
||||
.map_or(false, |c| c.is_uppercase());
|
||||
let is_module_or_type_completion =
|
||||
symbol_prefix.starts_with(|c: char| c.is_uppercase());
|
||||
|
||||
if is_module_or_type_completion {
|
||||
info!("Getting module completion...");
|
||||
|
|
|
@ -92,7 +92,7 @@ impl HasToken for ModuleName<'_> {
|
|||
|
||||
impl HasToken for &str {
|
||||
fn token(&self) -> Token {
|
||||
if self.chars().next().unwrap().is_uppercase() {
|
||||
if self.starts_with(|c: char| c.is_uppercase()) {
|
||||
Token::Type
|
||||
} else {
|
||||
Token::Variable
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue