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

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

Issue 12288041: It's not allowed to have an initializer for a final field that is initialized where it's declared. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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.
11 Language/05_Variables/05_Variables_A05_t04: Fail # TODO(ahe): Please triage this failure. 10 Language/05_Variables/05_Variables_A05_t04: Fail # TODO(ahe): Please triage this failure.
12 Language/05_Variables/05_Variables_A05_t05: Fail # TODO(ahe): Please triage this failure. 11 Language/05_Variables/05_Variables_A05_t05: Fail # TODO(ahe): Please triage this failure.
13 Language/05_Variables/05_Variables_A05_t06: Fail # TODO(ahe): Please triage this failure. 12 Language/05_Variables/05_Variables_A05_t06: Fail # TODO(ahe): Please triage this failure.
14 Language/05_Variables/05_Variables_A05_t07: Fail # TODO(ahe): Please triage this failure. 13 Language/05_Variables/05_Variables_A05_t07: Fail # TODO(ahe): Please triage this failure.
15 Language/05_Variables/05_Variables_A05_t08: Fail # TODO(ahe): Please triage this failure. 14 Language/05_Variables/05_Variables_A05_t08: Fail # TODO(ahe): Please triage this failure.
16 Language/05_Variables/05_Variables_A05_t09: Fail # TODO(ahe): Please triage this failure. 15 Language/05_Variables/05_Variables_A05_t09: Fail # TODO(ahe): Please triage this failure.
17 Language/05_Variables/05_Variables_A05_t10: Fail # TODO(ahe): Please triage this failure. 16 Language/05_Variables/05_Variables_A05_t10: Fail # TODO(ahe): Please triage this failure.
18 Language/05_Variables/05_Variables_A05_t11: Fail # TODO(ahe): Please triage this failure. 17 Language/05_Variables/05_Variables_A05_t11: Fail # TODO(ahe): Please triage this failure.
19 Language/05_Variables/05_Variables_A05_t12: Fail # TODO(ahe): Please triage this failure. 18 Language/05_Variables/05_Variables_A05_t12: Fail # TODO(ahe): Please triage this failure.
20 Language/05_Variables/05_Variables_A05_t13: Fail # TODO(ahe): Please triage this failure. 19 Language/05_Variables/05_Variables_A05_t13: Fail # TODO(ahe): Please triage this failure.
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 # 666 #
668 [ $compiler == dart2js ] 667 [ $compiler == dart2js ]
669 Language/05_Variables/05_Variables_A01_t04: Fail # Checks that a variable declar ation cannot contain both 'final' and 'var'. 668 Language/05_Variables/05_Variables_A01_t04: Fail # Checks that a variable declar ation cannot contain both 'final' and 'var'.
670 Language/05_Variables/05_Variables_A01_t05: Fail # Checks that a variable declar ation cannot contain both 'var' and 'type'. 669 Language/05_Variables/05_Variables_A01_t05: Fail # Checks that a variable declar ation cannot contain both 'var' and 'type'.
671 Language/05_Variables/05_Variables_A01_t08: Fail # Checks different variables in a single variable declaration must be delimited by commas. 670 Language/05_Variables/05_Variables_A01_t08: Fail # Checks different variables in a single variable declaration must be delimited by commas.
672 Language/05_Variables/05_Variables_A01_t12: Fail # Checks that variable declarat ion cannot contain both 'const' and 'var'. 671 Language/05_Variables/05_Variables_A01_t12: Fail # Checks that variable declarat ion cannot contain both 'const' and 'var'.
673 Language/05_Variables/05_Variables_A01_t13: Fail # Checks that variable declarat ion cannot contain both 'const' and 'final'. 672 Language/05_Variables/05_Variables_A01_t13: Fail # Checks that variable declarat ion cannot contain both 'const' and 'final'.
674 Language/05_Variables/05_Variables_A01_t14: Fail # Checks that variable declarat ion cannot contain 'const', 'final' and 'var' simultaneously. 673 Language/05_Variables/05_Variables_A01_t14: Fail # Checks that variable declarat ion cannot contain 'const', 'final' and 'var' simultaneously.
675 Language/05_Variables/05_Variables_A01_t15: Fail # Checks that a variable declar ation cannot contain the 'abstract' keyword. 674 Language/05_Variables/05_Variables_A01_t15: Fail # Checks that a variable declar ation cannot contain the 'abstract' keyword.
676 Language/05_Variables/05_Variables_A04_t01: Fail # Checks that a compile-time er ror occurs if a local constant variable is redefined. 675 Language/05_Variables/05_Variables_A04_t01: Fail # Checks that a compile-time er ror occurs if a local constant variable is redefined.
677 Language/05_Variables/05_Variables_A05_t01: Fail # Checks that a compile-time er ror occurs if a constant variable is not initialized.
678 Language/06_Functions/06_Functions_A01_t31: Fail # Checks that functions can't b e declared as static inside of a function body. 676 Language/06_Functions/06_Functions_A01_t31: Fail # Checks that functions can't b e declared as static inside of a function body.
679 Language/06_Functions/1_Function_Declaration_A01_t01: Fail # Checks that it is a compile-time error to preface library function with 'static'. 677 Language/06_Functions/1_Function_Declaration_A01_t01: Fail # Checks that it is a compile-time error to preface library function with 'static'.
680 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t03: Fail # Che cks that a required parameter can be constant. Reassigning it should produce a c ompile-time error. 678 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t03: Fail # Che cks that a required parameter can be constant. Reassigning it should produce a c ompile-time error.
681 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t04: Fail # Che cks that static variable declaration can't be a required formal parameter 679 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t04: Fail # Che cks that static variable declaration can't be a required formal parameter
682 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t05: Fail # Che cks that reassigning a final required parameter produces a compile-time error. 680 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t05: Fail # Che cks that reassigning a final required parameter produces a compile-time error.
683 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t06: Fail # Che cks that a functionSignature parameter cannot be final. 681 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t06: Fail # Che cks that a functionSignature parameter cannot be final.
684 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t07: Fail # Che cks that a functionSignature parameter cannot be declared as variable. 682 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t07: Fail # Che cks that a functionSignature parameter cannot be declared as variable.
685 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A01_t06: Fail # Che cks that an optional positional parameter can be final. Reassigning it should p roduce a compile-time error. 683 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A01_t06: Fail # Che cks that an optional positional parameter can be final. Reassigning it should p roduce a compile-time error.
686 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A01_t07: Fail # Che cks that an optional positional parameter can be constant. Reassigning it shoul d produce a compile-time error. 684 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A01_t07: Fail # Che cks that an optional positional parameter can be constant. Reassigning it shoul d produce a compile-time error.
687 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t01: Fail # Che cks that it is a compile-time error if the name of a positional optional paramet er begins with an '_' character. 685 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t01: Fail # Che cks that it is a compile-time error if the name of a positional optional paramet er begins with an '_' character.
(...skipping 15 matching lines...) Expand all
703 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. 701 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.
704 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. 702 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.
705 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. 703 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.
706 Language/07_Classes/2_Getters_A01_t03: Fail # Checks that a compile-time error i s produced if empty formal parameter list is present. 704 Language/07_Classes/2_Getters_A01_t03: Fail # Checks that a compile-time error i s produced if empty formal parameter list is present.
707 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. 705 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.
708 Language/07_Classes/4_Abstract_Instance_Members_A04_t01: Fail # Checks that a co mpile-time error is produced when the overriding abstract method has fewer named parameters than the instance method being overridden (2 vs 3) and neither have any required parameters. 706 Language/07_Classes/4_Abstract_Instance_Members_A04_t01: Fail # Checks that a co mpile-time error is produced when the overriding abstract method has fewer named parameters than the instance method being overridden (2 vs 3) and neither have any required parameters.
709 Language/07_Classes/4_Abstract_Instance_Members_A04_t05: Fail # Checks that a co mpile-time error is produced when the overriding non-abstract instance method h as the same set of named parameters as the abstract method being overriden, but in a different order. 707 Language/07_Classes/4_Abstract_Instance_Members_A04_t05: Fail # Checks that a co mpile-time error is produced when the overriding non-abstract instance method h as the same set of named parameters as the abstract method being overriden, but in a different order.
710 Language/07_Classes/4_Abstract_Instance_Members_A04_t06: Fail # Checks that a co mpile-time error is produced when the overriding non-abstract instance method h as almost the same set of named parameters as the abstract method being override n, except for one that has a different name. 708 Language/07_Classes/4_Abstract_Instance_Members_A04_t06: Fail # Checks that a co mpile-time error is produced when the overriding non-abstract instance method h as almost the same set of named parameters as the abstract method being override n, except for one that has a different name.
711 Language/07_Classes/6_Constructors/1_Generative_Constructors_A03_t05: Fail # Che cks that redirecting constructor can not have initializing formals. 709 Language/07_Classes/6_Constructors/1_Generative_Constructors_A03_t05: Fail # Che cks that redirecting constructor can not have initializing formals.
712 Language/07_Classes/6_Constructors/1_Generative_Constructors_A09_t01: Fail # Che cks that error is produced if a final variable is not initialized in one of the specified ways. 710 Language/07_Classes/6_Constructors/1_Generative_Constructors_A09_t01: Fail # Che cks that error is produced if a final variable is not initialized in one of the specified ways.
713 Language/07_Classes/6_Constructors/1_Generative_Constructors_A21_t01: Fail # Che cks that a compile-time error occur if k’s initializer list contains an initiali zer for a final variable whose declaration includes an initialization expression.
714 Language/07_Classes/6_Constructors/3_Constant_Constructors_A03_t01: Fail # Check s that a compile-time error is produced when a class with constant constructor also declares a non-final instance variable. 711 Language/07_Classes/6_Constructors/3_Constant_Constructors_A03_t01: Fail # Check s that a compile-time error is produced when a class with constant constructor also declares a non-final instance variable.
715 Language/07_Classes/6_Constructors/3_Constant_Constructors_A03_t02: Fail # Check s that compile-time error is produced when a class with constant constructor inh erits a non-final instance variable. 712 Language/07_Classes/6_Constructors/3_Constant_Constructors_A03_t02: Fail # Check s that compile-time error is produced when a class with constant constructor inh erits a non-final instance variable.
716 Language/07_Classes/6_Constructors_A01_t01: Fail # Checks that a compile-error i s produced when a constructor's id coincides with the name of a field in the sam e class. 713 Language/07_Classes/6_Constructors_A01_t01: Fail # Checks that a compile-error i s produced when a constructor's id coincides with the name of a field in the sam e class.
717 Language/07_Classes/6_Constructors_A02_t01: Fail # Checks that a compile-error i s produced when a named constructor definition does not begin with the name of i ts class. 714 Language/07_Classes/6_Constructors_A02_t01: Fail # Checks that a compile-error i s produced when a named constructor definition does not begin with the name of i ts class.
718 Language/07_Classes/6_Constructors/1_Generative_Constructors_A16_t07: Fail # htt p://dartbug.com/6242 715 Language/07_Classes/6_Constructors/1_Generative_Constructors_A16_t07: Fail # htt p://dartbug.com/6242
719 Language/11_Expressions/01_Constants_A16_t01: Fail # Checks that an IntegerDivis ionByZeroException raised during evaluation of a compile-time constant causes a compile-time error. 716 Language/11_Expressions/01_Constants_A16_t01: Fail # Checks that an IntegerDivis ionByZeroException raised during evaluation of a compile-time constant causes a compile-time error.
720 Language/11_Expressions/01_Constants_A16_t02: Fail # Checks that an OutOfMemoryE xception raised during evaluation of a compile-time constant causes a compile-ti me error. 717 Language/11_Expressions/01_Constants_A16_t02: Fail # Checks that an OutOfMemoryE xception raised during evaluation of a compile-time constant causes a compile-ti me error.
721 Language/11_Expressions/05_Strings_A02_t46: Fail # Checks that multi-line string s that contain characters and sequences prohibited by this grammar, cause compil e-time errors. 718 Language/11_Expressions/05_Strings_A02_t46: Fail # Checks that multi-line string s that contain characters and sequences prohibited by this grammar, cause compil e-time errors.
722 Language/11_Expressions/05_Strings_A02_t48: Fail # Checks that multi-line string s that contain characters and sequences prohibited by this grammar, cause compil e-time errors. 719 Language/11_Expressions/05_Strings_A02_t48: Fail # Checks that multi-line string s that contain characters and sequences prohibited by this grammar, cause compil e-time errors.
723 Language/11_Expressions/06_Lists_A04_t01: Fail # Checks that it is a compile-tim e error if the type argument of a constant list literal includes a type variable . 720 Language/11_Expressions/06_Lists_A04_t01: Fail # Checks that it is a compile-tim e error if the type argument of a constant list literal includes a type variable .
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 LibTest/core/Set/addAll_A01_t02: Fail 794 LibTest/core/Set/addAll_A01_t02: Fail
798 LibTest/core/Set/contains_A01_t02: Fail 795 LibTest/core/Set/contains_A01_t02: Fail
799 LibTest/core/Set/containsAll_A01_t02: Fail 796 LibTest/core/Set/containsAll_A01_t02: Fail
800 LibTest/core/Set/intersection_A03_t01: Fail 797 LibTest/core/Set/intersection_A03_t01: Fail
801 LibTest/core/Set/isSubsetOf_A01_t02: Fail 798 LibTest/core/Set/isSubsetOf_A01_t02: Fail
802 LibTest/core/Set/remove_A01_t02: Fail 799 LibTest/core/Set/remove_A01_t02: Fail
803 LibTest/core/Set/removeAll_A01_t02: Fail 800 LibTest/core/Set/removeAll_A01_t02: Fail
804 801
805 # Doesn't expect concurrent modification error (issue 376). 802 # Doesn't expect concurrent modification error (issue 376).
806 LibTest/core/Map/forEach_A01_t07: Fail 803 LibTest/core/Map/forEach_A01_t07: Fail
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698