use std::starts_with instead of iterator logic

This commit is contained in:
Folkert 2024-06-05 17:14:06 +02:00
parent 86726e03e3
commit 2cabe6546c
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
3 changed files with 5 additions and 8 deletions

View file

@ -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