-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Support operator call #1604
Comments
Issue #1986 has been merged into this issue. |
Marked this as blocking #2931. |
Added this to the M1 milestone. |
Marked this as being blocked by #2931. |
This comment was originally written by antonm@google.com Issue #5797 has been merged into this issue. cc @floitschG. |
Issue #5835 has been merged into this issue. |
Fixed at r16009. Added Fixed label. |
This comment was originally written by alexe.kaigorodov@gmail.com The co19 test 14_Types/5_Function_Types_A06_t01 still fails. |
Thanks for triaging this test. There are 3 issues with it: line 21: the call method is missing a body, making it abstract. Failing the test is therefore correct, since there is actually no call method. line 37: wrong expectation. new J() is f. line 41: wrong expectation. new K() is f. Thanks, |
This comment was originally written by alexe.kaigorodov@gmail.com After fixing, the test still fails: typedef void f(p1, p2); |
Should be fixed with r16541 |
This is a minor change with just bug fixes: * Handle trailing commas in for-loop updaters (#1354). * Format `||` patterns like fallthrough cases in switch expressions (#1602). * Handle comments and metadata before variables more gracefully (#1604). * Ensure comment formatting is idempotent (#1606). * Better indentation of leading comments on property accesses in binary operator operands (#1611). * Don't crash on doc comments in local variable declarations (#1621). This won't affect much code, but it does change the formatting in some cases. Change-Id: I2d52fee92aecbc24315e4f1a89360af85ec85942 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/401482 Auto-Submit: Bob Nystrom <rnystrom@google.com> Commit-Queue: Alexander Thomas <athom@google.com> Reviewed-by: Alexander Thomas <athom@google.com>
This issue was originally filed by ms...@unipro.ru
Support operator call for custom classes since it is already described in the specification.
The text was updated successfully, but these errors were encountered: