-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathmod.rs
More file actions
614 lines (552 loc) · 17.6 KB
/
Copy pathmod.rs
File metadata and controls
614 lines (552 loc) · 17.6 KB
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
use std::{
fmt::{self, Debug},
hash::{Hash, Hasher},
ops::{Index, IndexMut, Range},
};
use miette::{LabeledSpan, SourceOffset, SourceSpan};
pub mod types;
use oxc_allocator::{Allocator, CloneIn};
pub use types::Span;
/// An Empty span useful for creating AST nodes.
pub const SPAN: Span = Span::new(0, 0);
/// Zero-sized type which has pointer alignment (8 on 64-bit, 4 on 32-bit).
#[derive(Default, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
#[repr(transparent)]
struct PointerAlign([usize; 0]);
impl PointerAlign {
#[inline]
const fn new() -> Self {
Self([])
}
}
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, _align: PointerAlign::new() }
}
/// 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::new(at, 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());
/// ```
#[inline]
pub const fn is_unspanned(self) -> bool {
self.const_eq(SPAN)
}
/// 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 is grown by `offset` on either side.
///
/// This is equivalent to `span.expand_left(offset).expand_right(offset)`.
/// See [`expand_left`] and [`expand_right`] for more info.
///
/// # Example
/// ```
/// use oxc_span::Span;
///
/// let span = Span::new(3, 5);
/// assert_eq!(span.expand(1), Span::new(2, 6));
/// // start and end cannot be expanded past `0` and `u32::MAX`, respectively
/// assert_eq!(span.expand(5), Span::new(0, 10));
/// ```
///
/// [`expand_left`]: Span::expand_left
/// [`expand_right`]: Span::expand_right
#[must_use]
pub fn expand(self, offset: u32) -> Self {
Self::new(self.start.saturating_sub(offset), self.end.saturating_add(offset))
}
/// Create a [`Span`] that has its start and end positions shrunk by
/// `offset` amount.
///
/// It is a logical error to shrink the start of the [`Span`] past its end
/// position. This will panic in debug builds.
///
/// This is equivalent to `span.shrink_left(offset).shrink_right(offset)`.
/// See [`shrink_left`] and [`shrink_right`] for more info.
///
/// # Example
/// ```
/// use oxc_span::Span;
/// let span = Span::new(5, 10);
/// assert_eq!(span.shrink(2), Span::new(7, 8));
/// ```
///
/// [`shrink_left`]: Span::shrink_left
/// [`shrink_right`]: Span::shrink_right
#[must_use]
pub fn shrink(self, offset: u32) -> Self {
let start = self.start.saturating_add(offset);
let end = self.end.saturating_sub(offset);
debug_assert!(start <= end, "Cannot shrink span past zero length");
Self::new(start, 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(self, source_text: &str) -> &str {
&source_text[self.start as usize..self.end as usize]
}
/// Create a [`LabeledSpan`] covering this [`Span`] with the given label.
///
/// Use [`Span::primary_label`] if this is the primary span for the diagnostic.
#[must_use]
pub fn label<S: Into<String>>(self, label: S) -> LabeledSpan {
LabeledSpan::new_with_span(Some(label.into()), self)
}
/// Creates a primary [`LabeledSpan`] covering this [`Span`] with the given label.
#[must_use]
pub fn primary_label<S: Into<String>>(self, label: S) -> LabeledSpan {
LabeledSpan::new_primary_with_span(Some(label.into()), self)
}
/// Convert [`Span`] to a single `u64`.
///
/// On 64-bit platforms, `Span` is aligned on 8, so equivalent to a `u64`.
/// Compiler boils this conversion down to a no-op on 64-bit platforms.
/// <https://godbolt.org/z/9rcMoT1fc>
///
/// Do not use this on 32-bit platforms as it's likely to be less efficient.
///
/// Note: `#[ast]` macro adds `#[repr(C)]` to the struct, so field order is guaranteed.
#[expect(clippy::inline_always)] // Because this is a no-op on 64-bit platforms.
#[inline(always)]
const fn as_u64(self) -> u64 {
if cfg!(target_endian = "little") {
((self.end as u64) << 32) | (self.start as u64)
} else {
((self.start as u64) << 32) | (self.end as u64)
}
}
/// Compare two [`Span`]s.
///
/// Same as `PartialEq::eq`, but a const function, and takes owned `Span`s.
//
// `#[inline(always)]` because want to make sure this is inlined into `PartialEq::eq`.
#[expect(clippy::inline_always)]
#[inline(always)]
const fn const_eq(self, other: Self) -> bool {
if cfg!(target_pointer_width = "64") {
self.as_u64() == other.as_u64()
} else {
self.start == other.start && self.end == other.end
}
}
}
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 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)
}
}
// On 64-bit platforms, compare `Span`s as single `u64`s, which is faster when used with `&Span` refs.
// https://godbolt.org/z/sEf9MGvsr
impl PartialEq for Span {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.const_eq(*other)
}
}
// Skip hashing `_align` field.
// On 64-bit platforms, hash `Span` as a single `u64`, which is faster with `FxHash`.
// https://godbolt.org/z/4fbvcsTxM
impl Hash for Span {
#[inline] // We exclusively use `FxHasher`, which produces small output hashing `u64`s and `u32`s
fn hash<H: Hasher>(&self, hasher: &mut H) {
if cfg!(target_pointer_width = "64") {
self.as_u64().hash(hasher);
} else {
self.start.hash(hasher);
self.end.hash(hasher);
}
}
}
// Skip `_align` field in `Debug` output
#[expect(clippy::missing_fields_in_debug)]
impl Debug for Span {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("Span").field("start", &self.start).field("end", &self.end).finish()
}
}
/// Get the span for an AST node
pub trait GetSpan {
/// Get the [`Span`] for an AST node
fn span(&self) -> Span;
}
/// Get mutable ref to span for an AST node
pub trait GetSpanMut {
/// Get a mutable reference to an AST node's [`Span`].
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
}
}
impl<'a> CloneIn<'a> for Span {
type Cloned = Self;
#[inline]
fn clone_in(&self, _: &'a Allocator) -> Self {
*self
}
}
#[cfg(test)]
mod test {
use super::Span;
#[test]
fn test_size() {
let s = Span::sized(0, 5);
assert_eq!(s.size(), 5);
assert!(!s.is_empty());
let s = Span::sized(5, 0);
assert_eq!(s.size(), 0);
assert!(s.is_empty());
}
#[test]
fn test_hash() {
use std::hash::{DefaultHasher, Hash, Hasher};
fn hash<T: Hash>(value: T) -> u64 {
let mut hasher = DefaultHasher::new();
value.hash(&mut hasher);
hasher.finish()
}
let first_hash = hash(Span::new(1, 5));
let second_hash = hash(Span::new(1, 5));
assert_eq!(first_hash, second_hash);
// On 64-bit platforms, check hash is equivalent to `u64`
#[cfg(target_pointer_width = "64")]
{
let u64_equivalent: u64 =
if cfg!(target_endian = "little") { 1 + (5 << 32) } else { (1 << 32) + 5 };
let u64_hash = hash(u64_equivalent);
assert_eq!(first_hash, u64_hash);
}
// On 32-bit platforms, check `_align` field does not alter hash
#[cfg(not(target_pointer_width = "64"))]
{
#[derive(Hash)]
#[repr(C)]
struct PlainSpan {
start: u32,
end: u32,
}
let plain_hash = hash(PlainSpan { start: 1, end: 5 });
assert_eq!(first_hash, plain_hash);
}
}
#[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_eq!(Span::new(1, 5), Span::new(1, 5));
assert_ne!(Span::new(0, 0), Span::new(0, 1));
assert_ne!(Span::new(1, 5), Span::new(0, 5));
assert_ne!(Span::new(1, 5), Span::new(2, 5));
assert_ne!(Span::new(1, 5), Span::new(1, 4));
assert_ne!(Span::new(1, 5), Span::new(1, 6));
}
#[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)));
}
#[test]
fn test_expand() {
let span = Span::new(3, 5);
assert_eq!(span.expand(0), Span::new(3, 5));
assert_eq!(span.expand(1), Span::new(2, 6));
// start and end cannot be expanded past `0` and `u32::MAX`, respectively
assert_eq!(span.expand(5), Span::new(0, 10));
}
#[test]
fn test_shrink() {
let span = Span::new(4, 8);
assert_eq!(span.shrink(0), Span::new(4, 8));
assert_eq!(span.shrink(1), Span::new(5, 7));
// can be equal
assert_eq!(span.shrink(2), Span::new(6, 6));
}
#[test]
#[should_panic(expected = "Cannot shrink span past zero length")]
fn test_shrink_past_start() {
let span = Span::new(5, 10);
let _ = span.shrink(5);
}
}
#[cfg(test)]
mod size_asserts {
use std::mem::{align_of, size_of};
use super::Span;
const _: () = assert!(size_of::<Span>() == 8);
#[cfg(target_pointer_width = "64")]
const _: () = assert!(align_of::<Span>() == 8);
#[cfg(not(target_pointer_width = "64"))]
const _: () = assert!(align_of::<Span>() == 4);
}