1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
// Silence erroneous warnings from Rust Analyzer for `#[derive(Tsify)]`
#![allow(non_snake_case)]
use std::{
hash::{Hash, Hasher},
ops::{Index, IndexMut, Range},
};
use miette::{LabeledSpan, SourceOffset, SourceSpan};
#[cfg(feature = "serialize")]
use serde::Serialize;
#[cfg(feature = "serialize")]
use tsify::Tsify;
/// An Empty span useful for creating AST nodes.
pub const SPAN: Span = Span::new(0, 0);
/// Newtype for working with text ranges
///
/// See the [`text-size`](https://docs.rs/text-size) crate for details.
/// Utility methods can be copied from the `text-size` crate if they are needed.
/// NOTE: `u32` is sufficient for "all" reasonable programs. Larger than u32 is a 4GB JS file.
///
/// ## Hashing
/// [`Span`]'s implementation of [`Hash`] is a no-op so that AST nodes can be
/// compared by hash. This makes them unsuitable for use as keys in a hash map.
///
/// ```
/// use std::hash::{Hash, Hasher, DefaultHasher};
/// use oxc_span::Span;
///
/// let mut first = DefaultHasher::new();
/// let mut second = DefaultHasher::new();
///
/// Span::new(0, 5).hash(&mut first);
/// Span::new(10, 20).hash(&mut second);
///
/// assert_eq!(first.finish(), second.finish());
/// ```
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
#[cfg_attr(feature = "serialize", derive(Serialize, Tsify))]
#[non_exhaustive] // disallow struct expression constructor `Span {}`
pub struct Span {
pub start: u32,
pub end: u32,
}
impl Span {
/// Create a new [`Span`] from a start and end position.
///
/// # Invariants
/// The `start` position must be less than or equal to `end`. Note that this
/// invariant is only checked in debug builds to avoid a performance
/// penalty.
///
#[inline]
pub const fn new(start: u32, end: u32) -> Self {
Self { start, end }
}
/// Create a new empty [`Span`] that starts and ends at an offset position.
///
/// # Examples
/// ```
/// use oxc_span::Span;
///
/// let fifth = Span::empty(5);
/// assert!(fifth.is_empty());
/// assert_eq!(fifth, Span::sized(5, 0));
/// assert_eq!(fifth, Span::new(5, 5));
/// ```
pub fn empty(at: u32) -> Self {
Self { start: at, end: at }
}
/// Create a new [`Span`] starting at `start` and covering `size` bytes.
///
/// # Example
/// ```
/// use oxc_span::Span;
///
/// let span = Span::sized(2, 4);
/// assert_eq!(span.size(), 4);
/// assert_eq!(span, Span::new(2, 6));
/// ```
pub const fn sized(start: u32, size: u32) -> Self {
Self::new(start, start + size)
}
/// Get the number of bytes covered by the [`Span`].
///
/// # Example
/// ```
/// use oxc_span::Span;
///
/// assert_eq!(Span::new(1, 1).size(), 0);
/// assert_eq!(Span::new(0, 5).size(), 5);
/// assert_eq!(Span::new(5, 10).size(), 5);
/// ```
pub const fn size(&self) -> u32 {
debug_assert!(self.start <= self.end);
self.end - self.start
}
/// Returns `true` if `self` covers a range of zero length.
///
/// # Example
/// ```
/// use oxc_span::Span;
///
/// assert!(Span::new(0, 0).is_empty());
/// assert!(Span::new(5, 5).is_empty());
/// assert!(!Span::new(0, 5).is_empty());
/// ```
pub const fn is_empty(&self) -> bool {
debug_assert!(self.start <= self.end);
self.start == self.end
}
/// Returns `true` if `self` is not a real span.
/// i.e. `SPAN` which is used for generated nodes which are not in source code.
///
/// # Example
/// ```
/// use oxc_span::{Span, SPAN};
///
/// assert!(SPAN.is_unspanned());
/// assert!(!Span::new(0, 5).is_unspanned());
/// assert!(!Span::new(5, 5).is_unspanned());
/// ```
pub const fn is_unspanned(&self) -> bool {
self.start == SPAN.start && self.end == SPAN.end
}
/// Check if this [`Span`] contains another [`Span`].
///
/// [`Span`]s that start & end at the same position as this [`Span`] are
/// considered contained.
///
/// # Examples
///
/// ```rust
/// # use oxc_span::Span;
/// let span = Span::new(5, 10);
///
/// assert!(span.contains_inclusive(span)); // always true for itself
/// assert!(span.contains_inclusive(Span::new(5, 5)));
/// assert!(span.contains_inclusive(Span::new(6, 10)));
/// assert!(span.contains_inclusive(Span::empty(5)));
///
/// assert!(!span.contains_inclusive(Span::new(4, 10)));
/// assert!(!span.contains_inclusive(Span::empty(0)));
/// ```
#[inline]
pub const fn contains_inclusive(self, span: Span) -> bool {
self.start <= span.start && span.end <= self.end
}
/// Create a [`Span`] covering the maximum range of two [`Span`]s.
///
/// # Example
/// ```
/// use oxc_span::Span;
///
/// let span1 = Span::new(0, 5);
/// let span2 = Span::new(3, 8);
/// let merged_span = span1.merge(&span2);
/// assert_eq!(merged_span, Span::new(0, 8));
/// ```
#[must_use]
pub fn merge(&self, other: &Self) -> Self {
Self::new(self.start.min(other.start), self.end.max(other.end))
}
/// Create a [`Span`] that has its start position moved to the left by
/// `offset` bytes.
///
/// # Example
///
/// ```
/// use oxc_span::Span;
///
/// let a = Span::new(5, 10);
/// assert_eq!(a.expand_left(5), Span::new(0, 10));
/// ```
///
/// ## Bounds
///
/// The leftmost bound of the span is clamped to 0. It is safe to call this
/// method with a value larger than the start position.
///
/// ```
/// use oxc_span::Span;
///
/// let a = Span::new(0, 5);
/// assert_eq!(a.expand_left(5), Span::new(0, 5));
/// ```
#[must_use]
pub const fn expand_left(self, offset: u32) -> Self {
Self::new(self.start.saturating_sub(offset), self.end)
}
/// Create a [`Span`] that has its start position moved to the right by
/// `offset` bytes.
///
/// It is a logical error to shrink the start of the [`Span`] past its end
/// position.
///
/// # Example
///
/// ```
/// use oxc_span::Span;
///
/// let a = Span::new(5, 10);
/// let shrunk = a.shrink_left(5);
/// assert_eq!(shrunk, Span::new(10, 10));
///
/// // Shrinking past the end of the span is a logical error that will panic
/// // in debug builds.
/// std::panic::catch_unwind(|| {
/// shrunk.shrink_left(5);
/// });
/// ```
///
#[must_use]
pub const fn shrink_left(self, offset: u32) -> Self {
let start = self.start.saturating_add(offset);
debug_assert!(start <= self.end);
Self::new(self.start.saturating_add(offset), self.end)
}
/// Create a [`Span`] that has its end position moved to the right by
/// `offset` bytes.
///
/// # Example
///
/// ```
/// use oxc_span::Span;
///
/// let a = Span::new(5, 10);
/// assert_eq!(a.expand_right(5), Span::new(5, 15));
/// ```
///
/// ## Bounds
///
/// The rightmost bound of the span is clamped to `u32::MAX`. It is safe to
/// call this method with a value larger than the end position.
///
/// ```
/// use oxc_span::Span;
///
/// let a = Span::new(0, u32::MAX);
/// assert_eq!(a.expand_right(5), Span::new(0, u32::MAX));
/// ```
#[must_use]
pub const fn expand_right(self, offset: u32) -> Self {
Self::new(self.start, self.end.saturating_add(offset))
}
/// Create a [`Span`] that has its end position moved to the left by
/// `offset` bytes.
///
/// It is a logical error to shrink the end of the [`Span`] past its start
/// position.
///
/// # Example
///
/// ```
/// use oxc_span::Span;
///
/// let a = Span::new(5, 10);
/// let shrunk = a.shrink_right(5);
/// assert_eq!(shrunk, Span::new(5, 5));
///
/// // Shrinking past the start of the span is a logical error that will panic
/// // in debug builds.
/// std::panic::catch_unwind(|| {
/// shrunk.shrink_right(5);
/// });
/// ```
#[must_use]
pub const fn shrink_right(self, offset: u32) -> Self {
let end = self.end.saturating_sub(offset);
debug_assert!(self.start <= end);
Self::new(self.start, end)
}
/// Get a snippet of text from a source string that the [`Span`] covers.
///
/// # Example
/// ```
/// use oxc_span::Span;
///
/// let source = "function add (a, b) { return a + b; }";
/// let name_span = Span::new(9, 12);
/// let name = name_span.source_text(source);
/// assert_eq!(name_span.size(), name.len() as u32);
/// ```
pub fn source_text<'a>(&self, source_text: &'a str) -> &'a str {
&source_text[self.start as usize..self.end as usize]
}
/// Create a [`LabeledSpan`] covering this [`Span`] with the given label.
#[must_use]
pub fn label<S: Into<String>>(self, label: S) -> LabeledSpan {
LabeledSpan::new_with_span(Some(label.into()), self)
}
}
impl Index<Span> for str {
type Output = str;
#[inline]
fn index(&self, index: Span) -> &Self::Output {
&self[index.start as usize..index.end as usize]
}
}
impl IndexMut<Span> for str {
#[inline]
fn index_mut(&mut self, index: Span) -> &mut Self::Output {
&mut self[index.start as usize..index.end as usize]
}
}
impl From<Range<u32>> for Span {
#[inline]
fn from(range: Range<u32>) -> Self {
Self::new(range.start, range.end)
}
}
impl Hash for Span {
fn hash<H: Hasher>(&self, _state: &mut H) {
// hash to nothing so all ast spans can be comparable with hash
}
}
impl From<Span> for SourceSpan {
fn from(val: Span) -> Self {
Self::new(SourceOffset::from(val.start as usize), val.size() as usize)
}
}
impl From<Span> for LabeledSpan {
fn from(val: Span) -> Self {
LabeledSpan::underline(val)
}
}
/// Get the span for an AST node
pub trait GetSpan {
fn span(&self) -> Span;
}
/// Get mutable ref to span for an AST node
pub trait GetSpanMut {
fn span_mut(&mut self) -> &mut Span;
}
impl GetSpan for Span {
#[inline]
fn span(&self) -> Span {
*self
}
}
impl GetSpanMut for Span {
#[inline]
fn span_mut(&mut self) -> &mut Span {
self
}
}
#[cfg(test)]
mod test {
use super::Span;
#[test]
fn test_hash() {
use std::hash::{DefaultHasher, Hash, Hasher};
let mut first = DefaultHasher::new();
let mut second = DefaultHasher::new();
Span::new(0, 5).hash(&mut first);
Span::new(10, 20).hash(&mut second);
assert_eq!(first.finish(), second.finish());
}
#[test]
fn test_eq() {
assert_eq!(Span::new(0, 0), Span::new(0, 0));
assert_eq!(Span::new(0, 1), Span::new(0, 1));
assert_ne!(Span::new(0, 0), Span::new(0, 1));
}
#[test]
fn test_ordering_less() {
assert!(Span::new(0, 0) < Span::new(0, 1));
assert!(Span::new(0, 3) < Span::new(2, 5));
}
#[test]
fn test_ordering_greater() {
assert!(Span::new(0, 1) > Span::new(0, 0));
assert!(Span::new(2, 5) > Span::new(0, 3));
}
#[test]
fn test_contains() {
let span = Span::new(5, 10);
assert!(span.contains_inclusive(span));
assert!(span.contains_inclusive(Span::new(5, 5)));
assert!(span.contains_inclusive(Span::new(10, 10)));
assert!(span.contains_inclusive(Span::new(6, 9)));
assert!(!span.contains_inclusive(Span::new(0, 0)));
assert!(!span.contains_inclusive(Span::new(4, 10)));
assert!(!span.contains_inclusive(Span::new(5, 11)));
assert!(!span.contains_inclusive(Span::new(4, 11)));
}
}