Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1944)

Side by Side Diff: tests/co19/co19-dart2js.status

Issue 11829020: Report errors on repeated interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 # Crashes first, please. Then untriaged bugs. There is a section below 5 # Crashes first, please. Then untriaged bugs. There is a section below
6 # for co19 bugs. 6 # for co19 bugs.
7 [ $compiler == dart2js ] 7 [ $compiler == dart2js ]
8 Language/03_Overview/1_Scoping_A02_t05: Fail # TODO(ahe): Please triage this fai lure. 8 Language/03_Overview/1_Scoping_A02_t05: Fail # TODO(ahe): Please triage this fai lure.
9 Language/03_Overview/1_Scoping_A02_t06: Fail # TODO(ahe): Please triage this fai lure. 9 Language/03_Overview/1_Scoping_A02_t06: Fail # TODO(ahe): Please triage this fai lure.
10 Language/05_Variables/05_Variables_A05_t02: Fail # TODO(ahe): Please triage this failure. 10 Language/05_Variables/05_Variables_A05_t02: Fail # TODO(ahe): Please triage this failure.
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 Language/07_Classes/07_Classes_A02_t04: Fail # Checks that it is a compile-time error if a constant constructor declaration with initializers includes a body. 663 Language/07_Classes/07_Classes_A02_t04: Fail # Checks that it is a compile-time error if a constant constructor declaration with initializers includes a body.
664 Language/07_Classes/07_Classes_A02_t11: Fail # Checks that it is a compile-time error if a static final variable declaration does not include explicit initializ er. 664 Language/07_Classes/07_Classes_A02_t11: Fail # Checks that it is a compile-time error if a static final variable declaration does not include explicit initializ er.
665 Language/07_Classes/07_Classes_A03_t02: Fail # Checks that it is a compile-time error if a factory constructor method definition does not include a body. 665 Language/07_Classes/07_Classes_A03_t02: Fail # Checks that it is a compile-time error if a factory constructor method definition does not include a body.
666 Language/07_Classes/07_Classes_A03_t08: Fail # Checks that it is a compile-time error if a static setter method definition does not include a body. 666 Language/07_Classes/07_Classes_A03_t08: Fail # Checks that it is a compile-time error if a static setter method definition does not include a body.
667 Language/07_Classes/07_Classes_A03_t09: Fail # Checks that it is a compile-time error if a static function method definition does not include a body. 667 Language/07_Classes/07_Classes_A03_t09: Fail # Checks that it is a compile-time error if a static function method definition does not include a body.
668 Language/07_Classes/07_Classes_A04_t19: Fail # Checks that an abstract static me thod can't be used in place of a class member definition./ 668 Language/07_Classes/07_Classes_A04_t19: Fail # Checks that an abstract static me thod can't be used in place of a class member definition./
669 Language/07_Classes/07_Classes_A04_t21: Fail # Checks that a static operator can 't be used in place of a class member definition. 669 Language/07_Classes/07_Classes_A04_t21: Fail # Checks that a static operator can 't be used in place of a class member definition.
670 Language/07_Classes/07_Classes_A04_t22: Fail # Checks that an abstract static op erator can't be used in place of a class member definition./ 670 Language/07_Classes/07_Classes_A04_t22: Fail # Checks that an abstract static op erator can't be used in place of a class member definition./
671 Language/07_Classes/07_Classes_A04_t24: Fail # Checks that a static abstract get ter can't be used in place of a class member definition. 671 Language/07_Classes/07_Classes_A04_t24: Fail # Checks that a static abstract get ter can't be used in place of a class member definition.
672 Language/07_Classes/07_Classes_A04_t25: Fail # Checks that a static abstract set ter can't be used in place of a class member definition. 672 Language/07_Classes/07_Classes_A04_t25: Fail # Checks that a static abstract set ter can't be used in place of a class member definition.
673 Language/07_Classes/10_Superinterfaces_A04_t01: Fail # Checks that it is a compi le-time error if the same type appears more than once in the implements clause.
674 Language/07_Classes/1_Instance_Methods/2_Operators_A06_t02: Fail # Checks that a compile-time error is produced if a user-defined operator ~ specifies one param eter. 673 Language/07_Classes/1_Instance_Methods/2_Operators_A06_t02: Fail # Checks that a compile-time error is produced if a user-defined operator ~ specifies one param eter.
675 Language/07_Classes/1_Instance_Methods/2_Operators_A07_t01: Fail # Checks that a compile-time error is produced if a user-defined operator [] specifies an optio nal named parameter. 674 Language/07_Classes/1_Instance_Methods/2_Operators_A07_t01: Fail # Checks that a compile-time error is produced if a user-defined operator [] specifies an optio nal named parameter.
676 Language/07_Classes/1_Instance_Methods/2_Operators_A07_t02: Fail # Checks that a compile-time error is produced if a user-defined operator [] specifies an optio nal named parameter in addition to the required one. 675 Language/07_Classes/1_Instance_Methods/2_Operators_A07_t02: Fail # Checks that a compile-time error is produced if a user-defined operator [] specifies an optio nal named parameter in addition to the required one.
677 Language/07_Classes/1_Instance_Methods/2_Operators_A07_t03: Fail # Checks that a compile-time error is produced if a user-defined operator []= specifies one opt ional named parameter. 676 Language/07_Classes/1_Instance_Methods/2_Operators_A07_t03: Fail # Checks that a compile-time error is produced if a user-defined operator []= specifies one opt ional named parameter.
678 Language/07_Classes/1_Instance_Methods/2_Operators_A07_t04: Fail # Checks that a compile-time error is produced if a user-defined operator []= specifies one opt ional named parameter in addition to the two required ones 677 Language/07_Classes/1_Instance_Methods/2_Operators_A07_t04: Fail # Checks that a compile-time error is produced if a user-defined operator []= specifies one opt ional named parameter in addition to the two required ones
679 Language/07_Classes/1_Instance_Methods_A02_t02: Fail # Checks that a compile-tim e error is produced if m1 has fewer named parameters than m2 (1 vs. 0) and neith er have any required parameters. 678 Language/07_Classes/1_Instance_Methods_A02_t02: Fail # Checks that a compile-tim e error is produced if m1 has fewer named parameters than m2 (1 vs. 0) and neith er have any required parameters.
680 Language/07_Classes/1_Instance_Methods_A02_t05: Fail # Checks that a compile-tim e error is produced if m1 has almost the same set of named parameters as m2 exc ept for one of them having a different name. 679 Language/07_Classes/1_Instance_Methods_A02_t05: Fail # Checks that a compile-tim e error is produced if m1 has almost the same set of named parameters as m2 exc ept for one of them having a different name.
681 Language/07_Classes/2_Getters_A01_t03: Fail # Checks that a compile-time error i s produced if empty formal parameter list is present. 680 Language/07_Classes/2_Getters_A01_t03: Fail # Checks that a compile-time error i s produced if empty formal parameter list is present.
682 Language/07_Classes/2_Getters_A01_t04: Fail # Checks that a compile-time error i s produced if non-empty formal parameter list is present. 681 Language/07_Classes/2_Getters_A01_t04: Fail # Checks that a compile-time error i s produced if non-empty formal parameter list is present.
683 Language/07_Classes/2_Getters_A01_t05: Fail # Checks that a compile-time error i s produced if an static getter has empty formal parameter list. 682 Language/07_Classes/2_Getters_A01_t05: Fail # Checks that a compile-time error i s produced if an static getter has empty formal parameter list.
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 Language/14_Types/5_Function_Types_A01_t09: Fail # dartbug.com/7342 765 Language/14_Types/5_Function_Types_A01_t09: Fail # dartbug.com/7342
767 Language/14_Types/5_Function_Types_A01_t11: Fail # dartbug.com/7342 766 Language/14_Types/5_Function_Types_A01_t11: Fail # dartbug.com/7342
768 Language/14_Types/5_Function_Types_A02_t05: Fail # dartbug.com/7342 767 Language/14_Types/5_Function_Types_A02_t05: Fail # dartbug.com/7342
769 Language/14_Types/5_Function_Types_A02_t07: Fail # dartbug.com/7342 768 Language/14_Types/5_Function_Types_A02_t07: Fail # dartbug.com/7342
770 Language/14_Types/5_Function_Types_A02_t09: Fail # dartbug.com/7342 769 Language/14_Types/5_Function_Types_A02_t09: Fail # dartbug.com/7342
771 Language/14_Types/5_Function_Types_A02_t10: Fail # dartbug.com/7342 770 Language/14_Types/5_Function_Types_A02_t10: Fail # dartbug.com/7342
772 Language/14_Types/5_Function_Types_A03_t06: Fail # dartbug.com/7342 771 Language/14_Types/5_Function_Types_A03_t06: Fail # dartbug.com/7342
773 Language/14_Types/5_Function_Types_A03_t08: Fail # dartbug.com/7342 772 Language/14_Types/5_Function_Types_A03_t08: Fail # dartbug.com/7342
774 Language/14_Types/5_Function_Types_A03_t10: Fail # dartbug.com/7342 773 Language/14_Types/5_Function_Types_A03_t10: Fail # dartbug.com/7342
775 Language/14_Types/5_Function_Types_A03_t11: Fail # dartbug.com/7342 774 Language/14_Types/5_Function_Types_A03_t11: Fail # dartbug.com/7342
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698