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

@@ -8,7 +8,7 @@ const ZigString = JSC.ZigString;
const validators = @import("./util/validators.zig");
pub fn crc32(globalThis: *JSC.JSGlobalObject, callframe: *JSC.CallFrame) bun.JSError!JSC.JSValue {
const arguments = callframe.arguments(2).ptr;
const arguments = callframe.arguments_old(2).ptr;
const data: ZigString.Slice = blk: {
const data: JSC.JSValue = arguments[0];