-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Rename IsMacOS to IsApplePlatform in the JIT #96090
Conversation
Now that we use it on iOS/tvOS as well, rename the variables to match. Fixes dotnet#87610
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch Issue DetailsNow that we use it on iOS/tvOS as well, rename the variables to match. Fixes #87610
|
Why not IsApplePlatform which we have used elsewhere? Or should we rename those to IsAppleOS (to rhyme with Target"OS")? |
I don't particularly care, another option would be using IsOSXLike which we've used in ILC. |
Well, introducing new name is not being consistent, which is the whole premise of this change. ;) % git grep -i isappleplatform | wc -l
70
% git grep -i isappleos | wc -l
0 |
Ok, renamed to IsApplePlatform and fixed a few other instances where we referred to osx/macos |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks
Now that we use it on iOS/tvOS as well, rename the variables to match.
Fixes #87610