mirror of
https://github.com/oven-sh/bun
synced 2026-02-11 11:29:02 +00:00
Sort imports in all files (#21119)
Co-authored-by: taylor.fish <contact@taylor.fish>
This commit is contained in:
@@ -1,11 +1,3 @@
|
||||
const std = @import("std");
|
||||
const bun = @import("bun");
|
||||
|
||||
const Allocator = std.mem.Allocator;
|
||||
const strings = bun.strings;
|
||||
const js_lexer = bun.js_lexer;
|
||||
const string = bun.string;
|
||||
|
||||
const MutableString = @This();
|
||||
|
||||
allocator: Allocator,
|
||||
@@ -462,3 +454,11 @@ pub fn writeAll(self: *MutableString, bytes: string) Allocator.Error!usize {
|
||||
try self.list.appendSlice(self.allocator, bytes);
|
||||
return bytes.len;
|
||||
}
|
||||
|
||||
const std = @import("std");
|
||||
const Allocator = std.mem.Allocator;
|
||||
|
||||
const bun = @import("bun");
|
||||
const js_lexer = bun.js_lexer;
|
||||
const string = bun.string;
|
||||
const strings = bun.strings;
|
||||
|
||||
Reference in New Issue
Block a user