aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/validation/field_expr.rs
blob: d3020edf783490899d6983c5320c3c5612933f59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::{
    ast::{self, FieldKind},
    SyntaxError,
    SyntaxErrorKind::*,
};

pub(crate) fn validate_field_expr_node(node: &ast::FieldExpr, errors: &mut Vec<SyntaxError>) {
    if let Some(FieldKind::Index(idx)) = node.field_access() {
        if idx.text().chars().any(|c| c < '0' || c > '9') {
            errors.push(SyntaxError::new(InvalidTupleIndexFormat, idx.range()));
        }
    }
}