zig: rename CallFrame.arguments to .arguments_old to free up decl name (#15296)

This commit is contained in:
Meghan Denny
2024-11-20 16:18:56 -08:00
committed by GitHub
parent 3681aa9f0a
commit 0e3e33072b
52 changed files with 273 additions and 273 deletions

View File

@@ -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;