We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4cb570 commit 0eb8135Copy full SHA for 0eb8135
1 file changed
src/parser/lex.rs
@@ -429,11 +429,7 @@ impl Lexer {
429
}
430
if !found_lparen {
431
// Not followed by (, treat as metric identifier
432
- if s.contains(':') {
433
- return State::Lexeme(T_METRIC_IDENTIFIER);
434
- } else {
435
- return State::Lexeme(T_IDENTIFIER);
436
- }
+ return State::Lexeme(T_IDENTIFIER);
437
438
439
State::Lexeme(token_id)
0 commit comments