Type Alias IdentifierExpression

Source
pub type IdentifierExpression = Span;

Aliased Type§

struct IdentifierExpression {
    pub start: usize,
    pub end: usize,
}

Fields§

§start: usize

The lower bound of the range (inclusive).

§end: usize

The upper bound of the range (exclusive).

Trait Implementations§

Source§

impl SpannedSyntax for IdentifierExpression

Source§

fn with_source<'s>(&self, source: &'s str) -> WithSource<'s, &Self>