mirror of
https://github.com/oven-sh/bun
synced 2026-02-13 20:39:05 +00:00
zig: rename CallFrame.arguments to .arguments_old to free up decl name (#15296)
This commit is contained in:
@@ -2298,7 +2298,7 @@ pub const bindings = struct {
|
||||
// }
|
||||
|
||||
pub fn jsReadTarball(global: *JSGlobalObject, callFrame: *CallFrame) bun.JSError!JSValue {
|
||||
const args = callFrame.arguments(1).slice();
|
||||
const args = callFrame.arguments_old(1).slice();
|
||||
if (args.len < 1 or !args[0].isString()) {
|
||||
global.throw("expected tarball path string argument", .{});
|
||||
return .zero;
|
||||
|
||||
Reference in New Issue
Block a user