-
Notifications
You must be signed in to change notification settings - Fork 1.7k
tests/lib/mirrors/mixin_test.dart is broken #12464
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
Comments
Marked this as blocking #6490. |
Removing @MixinUsed in https://codereview.chromium.org/22859016. Added Started label. |
https://codereview.chromium.org/23180004 implements 'Super with M2, M1'. |
Since r26185, constructors are no longer members. |
CL 23180004 landed in r27132. |
Added this to the M7 milestone. |
Removed Priority-Unassigned label. |
Removed this from the 1.6 milestone. |
Removed Oldschool-Milestone-1.6 label. |
Mirrors is no longer supported in Dart2JS. |
The test doesn't work without @MirrorsUsed.
The test assumes an anonymous mixin application is named 'M1(M2(Super))' but it should be 'Super with M2, M1'.
The test assumes constructors are members, but they are not.
The mixin is the owner of members, but not the constructor (which is explicitly copied down per the specification).
The text was updated successfully, but these errors were encountered: