Skip to content

Commit a4eec83

Browse files
authored
fix: strict substring (#27)
1 parent 14e3c0b commit a4eec83

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rspack_sources"
3-
version = "0.1.9"
3+
version = "0.1.10"
44
edition = "2021"
55
authors = ["h-a-n-a <[email protected]>", "ahabhgk <[email protected]>"]
66
resolver = "2"
@@ -22,6 +22,7 @@ once_cell = "1"
2222
parking_lot = "0.12"
2323
dashmap = "5"
2424
smol_str = "0.1"
25+
substring = "1"
2526

2627
[dev-dependencies]
2728
twox-hash = "1"

src/helpers.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ use std::{borrow::BorrowMut, cell::RefCell};
22

33
use hashbrown::HashMap;
44
use smol_str::SmolStr;
5+
use substring::Substring;
56

67
use crate::{
78
source::{Mapping, OriginalLocation},
@@ -895,9 +896,8 @@ pub fn stream_chunks_of_combined_source_map(
895896
.get(inner_original_line as usize - 1)
896897
.map_or("", |lines| {
897898
let start = inner_original_column as usize;
898-
let end =
899-
(start + location_in_chunk as usize).min(lines.len());
900-
&lines[start..end]
899+
let end = start + location_in_chunk as usize;
900+
lines.substring(start, end)
901901
});
902902
if &inner_chunk[..location_in_chunk as usize] == original_chunk
903903
{
@@ -998,8 +998,8 @@ pub fn stream_chunks_of_combined_source_map(
998998
.get(inner_original_line as usize - 1)
999999
.map_or("", |i| {
10001000
let start = inner_original_column as usize;
1001-
let end = (start + name.len()).min(i.len());
1002-
&i[start..end]
1001+
let end = start + name.len();
1002+
i.substring(start, end)
10031003
});
10041004
if name == original_name {
10051005
let mut name_index_mapping = name_index_mapping.borrow_mut();

0 commit comments

Comments
 (0)