import everything from "bun" where possible

This commit is contained in:
Jarred Sumner
2022-11-29 02:42:56 -08:00
parent 7b59d9d97c
commit b631ea7d72
161 changed files with 621 additions and 739 deletions

View File

@@ -9,12 +9,12 @@ const std = @import("std");
const os = std.os;
const Dir = std.fs.Dir;
const JSC = @import("../../jsc.zig");
const JSC = @import("bun").JSC;
const PathString = JSC.PathString;
const IteratorError = error{ AccessDenied, SystemResources } || os.UnexpectedError;
const mem = std.mem;
const strings = @import("../../global.zig").strings;
const strings = @import("bun").strings;
const Maybe = JSC.Maybe;
const File = std.fs.File;
const Result = Maybe(?Entry);