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

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

Issue 12620002: Emit compile time error on static non-members. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reword warning and move it before the crash messages. Created 7 years, 9 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
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/warnings.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_t04: Fail # TODO(ahe): Please triage this failure. 10 Language/05_Variables/05_Variables_A05_t04: Fail # TODO(ahe): Please triage this failure.
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 # 726 #
727 [ $compiler == dart2js ] 727 [ $compiler == dart2js ]
728 Language/05_Variables/05_Variables_A01_t04: Fail # Checks that a variable declar ation cannot contain both 'final' and 'var'. 728 Language/05_Variables/05_Variables_A01_t04: Fail # Checks that a variable declar ation cannot contain both 'final' and 'var'.
729 Language/05_Variables/05_Variables_A01_t05: Fail # Checks that a variable declar ation cannot contain both 'var' and 'type'. 729 Language/05_Variables/05_Variables_A01_t05: Fail # Checks that a variable declar ation cannot contain both 'var' and 'type'.
730 Language/05_Variables/05_Variables_A01_t08: Fail # Checks different variables in a single variable declaration must be delimited by commas. 730 Language/05_Variables/05_Variables_A01_t08: Fail # Checks different variables in a single variable declaration must be delimited by commas.
731 Language/05_Variables/05_Variables_A01_t12: Fail # Checks that variable declarat ion cannot contain both 'const' and 'var'. 731 Language/05_Variables/05_Variables_A01_t12: Fail # Checks that variable declarat ion cannot contain both 'const' and 'var'.
732 Language/05_Variables/05_Variables_A01_t13: Fail # Checks that variable declarat ion cannot contain both 'const' and 'final'. 732 Language/05_Variables/05_Variables_A01_t13: Fail # Checks that variable declarat ion cannot contain both 'const' and 'final'.
733 Language/05_Variables/05_Variables_A01_t14: Fail # Checks that variable declarat ion cannot contain 'const', 'final' and 'var' simultaneously. 733 Language/05_Variables/05_Variables_A01_t14: Fail # Checks that variable declarat ion cannot contain 'const', 'final' and 'var' simultaneously.
734 Language/05_Variables/05_Variables_A01_t15: Fail # Checks that a variable declar ation cannot contain the 'abstract' keyword. 734 Language/05_Variables/05_Variables_A01_t15: Fail # Checks that a variable declar ation cannot contain the 'abstract' keyword.
735 Language/05_Variables/05_Variables_A04_t01: Fail # Checks that a compile-time er ror occurs if a local constant variable is redefined. 735 Language/05_Variables/05_Variables_A04_t01: Fail # Checks that a compile-time er ror occurs if a local constant variable is redefined.
736 Language/06_Functions/06_Functions_A01_t31: Fail # Checks that functions can't b e declared as static inside of a function body.
737 Language/06_Functions/1_Function_Declaration_A01_t01: Fail # Checks that it is a compile-time error to preface library function with 'static'.
738 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. 736 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.
739 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 737 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
740 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. 738 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.
741 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t06: Fail # Che cks that a functionSignature parameter cannot be final. 739 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t06: Fail # Che cks that a functionSignature parameter cannot be final.
742 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t07: Fail # Che cks that a functionSignature parameter cannot be declared as variable. 740 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t07: Fail # Che cks that a functionSignature parameter cannot be declared as variable.
743 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. 741 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.
744 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. 742 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.
745 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. 743 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.
746 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t02: Fail # Che cks that it is a compile-time error if the name of a positional optional paramet er begins with an '_' character. 744 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t02: Fail # Che cks that it is a compile-time error if the name of a positional optional paramet er begins with an '_' character.
747 Language/06_Functions/2_Formal_Parameters_A03_t01: Fail # Checks that it is a co mpile-time error if a required parameter is declared as a constant variable. 745 Language/06_Functions/2_Formal_Parameters_A03_t01: Fail # Checks that it is a co mpile-time error if a required parameter is declared as a constant variable.
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
849 LibTest/core/Set/remove_A01_t02: Fail # Doesn't expect null to be allowed in Set or Map keys (issue 377). 847 LibTest/core/Set/remove_A01_t02: Fail # Doesn't expect null to be allowed in Set or Map keys (issue 377).
850 LibTest/core/Set/removeAll_A01_t02: Fail # Doesn't expect null to be allowed in Set or Map keys (issue 377). 848 LibTest/core/Set/removeAll_A01_t02: Fail # Doesn't expect null to be allowed in Set or Map keys (issue 377).
851 849
852 LibTest/core/Map/forEach_A01_t07: Fail # Doesn't expect concurrent modification error (issue 376). 850 LibTest/core/Map/forEach_A01_t07: Fail # Doesn't expect concurrent modification error (issue 376).
853 851
854 LibTest/core/String/charCodes_A01_t01: Fail # Deprecated string members removed (issue 382). 852 LibTest/core/String/charCodes_A01_t01: Fail # Deprecated string members removed (issue 382).
855 LibTest/core/String/charCodeAt_A02_t01: Fail # Deprecated string members removed (issue 382). 853 LibTest/core/String/charCodeAt_A02_t01: Fail # Deprecated string members removed (issue 382).
856 LibTest/core/String/charCodeAt_A03_t01: Fail # Deprecated string members removed (issue 382). 854 LibTest/core/String/charCodeAt_A03_t01: Fail # Deprecated string members removed (issue 382).
857 LibTest/core/String/charCodeAt_A01_t01: Fail # Deprecated string members removed (issue 382). 855 LibTest/core/String/charCodeAt_A01_t01: Fail # Deprecated string members removed (issue 382).
858 LibTest/core/String/splitChars_A01_t01: Fail # Deprecated string members removed (issue 382). 856 LibTest/core/String/splitChars_A01_t01: Fail # Deprecated string members removed (issue 382).
OLDNEW
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/warnings.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698