Skip to content

Commit da53cdd

Browse files
committed
Fix span-locations build after parser move
1 parent 1a2ccba commit da53cdd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fallback.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,9 +358,9 @@ impl SourceMap {
358358
#[derive(Clone, Copy, PartialEq, Eq)]
359359
pub(crate) struct Span {
360360
#[cfg(span_locations)]
361-
lo: u32,
361+
pub(crate) lo: u32,
362362
#[cfg(span_locations)]
363-
hi: u32,
363+
pub(crate) hi: u32,
364364
}
365365

366366
impl Span {

0 commit comments

Comments
 (0)