-
-
Notifications
You must be signed in to change notification settings - Fork 658
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
Pull requests for 4.3 Hotfix (part 4) #11394
Comments
Not sure if possible to merge, but compilation server improvements will be nice to have for stable releases before 5.0 |
I didn't include this, as it's kind of a big change (and big merge conflicts) for a patch release :/ |
Could the next 4.3 release include Apple Silicon binaries as well? #11572 |
I will try, iirc there were issues last time. Btw, I've seen people complain about the installer not being "universal", do you think it would be easy to update? |
I guess we'd need Neko universal binaries too. |
This will have to wait for 4.3.5 |
Null coalescing logic has not been updated in release branch: @:using(Main.MoneyTools)
typedef Money = Int;
class MoneyTools {
public static function inflate(money:Money):Money {
return money + 99;
}
}
class Main {
static final money:Null<Money> = 1; // ok without Null<...>
static function main() {
final money = money ?? return;
$type(money); // Int
money.inflate(); // Missing fields for this
}
}
|
What issue/PR are you talking about here? |
I think this is about commits from #11425 |
4.3.4
See also:
The text was updated successfully, but these errors were encountered: