Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[JavaScriptCore] Implement missing Xcode 16.0 changes. #21716

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/JavaScriptCore/Enums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public enum JSClassAttributes : uint {
NoAutomaticPrototype = 1 << 1
}

[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), NoMac]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), Mac (15, 0)]
public enum JSRelationCondition : uint {
Undefined,
Equal,
Expand Down
22 changes: 11 additions & 11 deletions src/javascriptcore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,11 @@ partial interface JSValue {
[Export ("toUInt32")]
uint ToUInt32 ();

[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), NoMac]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), Mac (15, 0)]
[Export ("toInt64")]
long ToInt64 ();

[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), NoMac]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), Mac (15, 0)]
[Export ("toUInt64")]
ulong ToUInt64 ();

Expand Down Expand Up @@ -342,46 +342,46 @@ partial interface JSValue {
bool IsSymbol { get; }

[Static]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), NoMac]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), Mac (15, 0)]
[Export ("valueWithNewBigIntFromString:inContext:")]
[return: NullAllowed]
JSValue CreateNewBigInt (string @string, JSContext context);

[Static]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), NoMac]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), Mac (15, 0)]
[Export ("valueWithNewBigIntFromInt64:inContext:")]
[return: NullAllowed]
JSValue CreateNewBigInt (long int64, JSContext context);

[Static]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), NoMac]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), Mac (15, 0)]
[Export ("valueWithNewBigIntFromUInt64:inContext:")]
[return: NullAllowed]
JSValue CreateNewBigInt (ulong uint64, JSContext context);

[Static]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), NoMac]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), Mac (15, 0)]
[Export ("valueWithNewBigIntFromDouble:inContext:")]
[return: NullAllowed]
JSValue CreateNewBigInt (double uint64, JSContext context);

[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), NoMac]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), Mac (15, 0)]
[Export ("isBigInt")]
bool IsBigInt { get; }

[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), NoMac]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), Mac (15, 0)]
[Export ("compareJSValue:")]
JSRelationCondition Compare (JSValue other);

[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), NoMac]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), Mac (15, 0)]
[Export ("compareInt64:")]
JSRelationCondition Compare (long other);

[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), NoMac]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), Mac (15, 0)]
[Export ("compareUInt64:")]
JSRelationCondition Compare (ulong other);

[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), NoMac]
[iOS (18, 0), MacCatalyst (18, 0), TV (18, 0), Mac (15, 0)]
[Export ("compareDouble:")]
JSRelationCondition Compare (double other);
}
Expand Down

This file was deleted.