Skip to content

Commit fb8ac4e

Browse files
committed
remo9ve banned wrods
1 parent 31e8534 commit fb8ac4e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/bundler/bundle_v2.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9234,7 +9234,7 @@ pub const LinkerContext = struct {
92349234
};
92359235
const Visitor = struct {
92369236
visited: std.AutoArrayHashMap(Ref, void),
9237-
properties: std.StringArrayHashMap(PropertyInFile),
9237+
properties: bun.StringArrayHashMap(PropertyInFile),
92389238
all_import_records: []const ImportRecord.List,
92399239
all_css_asts: []const ?*bun.css.BundlerStyleSheet,
92409240
all_symbols: *const Symbol.Map,
@@ -9358,7 +9358,7 @@ pub const LinkerContext = struct {
93589358
const temp_allocator = sfb.get();
93599359
var visitor = Visitor{
93609360
.visited = std.AutoArrayHashMap(Ref, void).init(temp_allocator),
9361-
.properties = std.StringArrayHashMap(PropertyInFile).init(temp_allocator),
9361+
.properties = bun.StringArrayHashMap(PropertyInFile).init(temp_allocator),
93629362
.all_import_records = import_records_list,
93639363
.all_css_asts = all_css_asts,
93649364
.all_symbols = &this.graph.symbols,

src/css/css_parser.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2982,7 +2982,7 @@ const LocalEntry = struct {
29822982
///
29832983
/// We use this ref as a layer of indirection during the bundling stage because we don't
29842984
/// 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);
29862986
/// Local symbol renaming results go here
29872987
pub const LocalsResultsMap = bun.bundle_v2.MangledProps;
29882988
/// Using `compose` and having conflicting properties is undefined behavior according

0 commit comments

Comments
 (0)