Type Alias Loc

Source
pub type Loc = Range<usize>;
Expand description

The location of an expression.

Aliased Type§

pub struct Loc {
    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).