use Span;
/// Tracks how a code point was represented in source code.
/// This is needed to preserve information about escape sequences
/// when parsing string literals for RegExp constructor.
/// Represents UTF-16 code unit(u16 as u32) or Unicode code point(char as u32).
/// `Span` width may be more than 1, since there will be escape sequences.