You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of the tests for the named-arguments-anywhere language feature aren't passing. I looked into them, and I think the tests should be updated.
Test co19/LanguageFeatures/Named-arguments-anywhere/constructor_t08
In this test the error is due to class A having a default constructor instead of the one taking three arguments. I think it's just a typo, and if C is corrected to A in line 20, the test passes.
Test co19/LanguageFeatures/Named-arguments-anywhere/constructor_t02
The failures in this test are in the lines where the type argument is paced after the name of the named constructor. I think it should be a compile-time error indeed, and the argument should to after the name of the class and before the name of the constructor. CC-ing @eernstg to confirm.
Some of the tests for the named-arguments-anywhere language feature aren't passing. I looked into them, and I think the tests should be updated.
Test co19/LanguageFeatures/Named-arguments-anywhere/constructor_t08
In this test the error is due to class A having a default constructor instead of the one taking three arguments. I think it's just a typo, and if
C
is corrected toA
in line 20, the test passes.co19/LanguageFeatures/Named-arguments-anywhere/constructor_t08.dart
Lines 17 to 23 in 063592e
Test co19/LanguageFeatures/Named-arguments-anywhere/constructor_t06
I think the failure in this test is due to the typo too: in line 28 it should say
T x
(with the space) instead ofTx
.co19/LanguageFeatures/Named-arguments-anywhere/constructor_t06.dart
Line 28 in 063592e
Test co19/LanguageFeatures/Named-arguments-anywhere/constructor_t02
The failures in this test are in the lines where the type argument is paced after the name of the named constructor. I think it should be a compile-time error indeed, and the argument should to after the name of the class and before the name of the constructor. CC-ing @eernstg to confirm.
co19/LanguageFeatures/Named-arguments-anywhere/constructor_t02.dart
Lines 33 to 35 in 063592e
The text was updated successfully, but these errors were encountered: