meta: ensure there's a single 'bun' import per file in zig (#10137)

* meta: ensure there's a single 'bun' import per file in zig

* undo this change in codegen
This commit is contained in:
Meghan Denny
2024-04-09 22:41:07 -07:00
committed by GitHub
parent 698d0f7c87
commit e209ae81dd
121 changed files with 458 additions and 449 deletions

View File

@@ -2441,7 +2441,7 @@ pub fn elementLengthLatin1IntoUTF8(comptime Type: type, latin1_: Type) usize {
return input_len + total_non_ascii_count;
}
const JSC = @import("root").bun.JSC;
const JSC = bun.JSC;
pub fn copyLatin1IntoUTF16(comptime Buffer: type, buf_: Buffer, comptime Type: type, latin1_: Type) EncodeIntoResult {
var buf = buf_;