mirror of
https://github.com/oven-sh/bun
synced 2026-02-19 07:12:24 +00:00
zig: rename CallFrame.arguments to .arguments_old to free up decl name (#15296)
This commit is contained in:
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user