File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9234,7 +9234,7 @@ pub const LinkerContext = struct {
9234
9234
};
9235
9235
const Visitor = struct {
9236
9236
visited: std.AutoArrayHashMap(Ref, void),
9237
- properties: std .StringArrayHashMap(PropertyInFile),
9237
+ properties: bun .StringArrayHashMap(PropertyInFile),
9238
9238
all_import_records: []const ImportRecord.List,
9239
9239
all_css_asts: []const ?*bun.css.BundlerStyleSheet,
9240
9240
all_symbols: *const Symbol.Map,
@@ -9358,7 +9358,7 @@ pub const LinkerContext = struct {
9358
9358
const temp_allocator = sfb.get();
9359
9359
var visitor = Visitor{
9360
9360
.visited = std.AutoArrayHashMap(Ref, void).init(temp_allocator),
9361
- .properties = std .StringArrayHashMap(PropertyInFile).init(temp_allocator),
9361
+ .properties = bun .StringArrayHashMap(PropertyInFile).init(temp_allocator),
9362
9362
.all_import_records = import_records_list,
9363
9363
.all_css_asts = all_css_asts,
9364
9364
.all_symbols = &this.graph.symbols,
Original file line number Diff line number Diff line change @@ -2982,7 +2982,7 @@ const LocalEntry = struct {
2982
2982
///
2983
2983
/// We use this ref as a layer of indirection during the bundling stage because we don't
2984
2984
/// know the final generated class names for local scope until print time.
2985
- pub const LocalScope = std .StringArrayHashMapUnmanaged (LocalEntry );
2985
+ pub const LocalScope = bun .StringArrayHashMapUnmanaged (LocalEntry );
2986
2986
/// Local symbol renaming results go here
2987
2987
pub const LocalsResultsMap = bun .bundle_v2 .MangledProps ;
2988
2988
/// Using `compose` and having conflicting properties is undefined behavior according
You can’t perform that action at this time.
0 commit comments