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

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

Issue 24267002: Emit compile-time error on 'const' formal parameters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 | « tests/co19/co19-dart2dart.status ('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 [ $compiler == dart2js && $runtime == drt ] 5 [ $compiler == dart2js && $runtime == drt ]
6 LibTest/core/List/sort_A01_t02: Pass, Fail # v8 bug: Issue 12293 6 LibTest/core/List/sort_A01_t02: Pass, Fail # v8 bug: Issue 12293
7 LibTest/core/List/sort_A01_t03: Pass, Fail # v8 bug: Issue 12293 7 LibTest/core/List/sort_A01_t03: Pass, Fail # v8 bug: Issue 12293
8 LibTest/core/Map/Map_class_A01_t04: Pass, Fail # v8 bug: Issue 12293 8 LibTest/core/Map/Map_class_A01_t04: Pass, Fail # v8 bug: Issue 12293
9 9
10 [ $compiler == dart2js && $runtime == jsshell ] 10 [ $compiler == dart2js && $runtime == jsshell ]
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 Language/03_Overview/1_Scoping_A01_t39: Fail # dartbug.com/7202 324 Language/03_Overview/1_Scoping_A01_t39: Fail # dartbug.com/7202
325 Language/05_Variables/05_Variables_A01_t04: Fail # Checks that a variable declar ation cannot contain both 'final' and 'var'. 325 Language/05_Variables/05_Variables_A01_t04: Fail # Checks that a variable declar ation cannot contain both 'final' and 'var'.
326 Language/05_Variables/05_Variables_A01_t05: Fail # Checks that a variable declar ation cannot contain both 'var' and 'type'. 326 Language/05_Variables/05_Variables_A01_t05: Fail # Checks that a variable declar ation cannot contain both 'var' and 'type'.
327 Language/05_Variables/05_Variables_A01_t08: Fail # Checks different variables in a single variable declaration must be delimited by commas. 327 Language/05_Variables/05_Variables_A01_t08: Fail # Checks different variables in a single variable declaration must be delimited by commas.
328 Language/05_Variables/05_Variables_A01_t12: Fail # Checks that variable declarat ion cannot contain both 'const' and 'var'. 328 Language/05_Variables/05_Variables_A01_t12: Fail # Checks that variable declarat ion cannot contain both 'const' and 'var'.
329 Language/05_Variables/05_Variables_A01_t13: Fail # Checks that variable declarat ion cannot contain both 'const' and 'final'. 329 Language/05_Variables/05_Variables_A01_t13: Fail # Checks that variable declarat ion cannot contain both 'const' and 'final'.
330 Language/05_Variables/05_Variables_A01_t14: Fail # Checks that variable declarat ion cannot contain 'const', 'final' and 'var' simultaneously. 330 Language/05_Variables/05_Variables_A01_t14: Fail # Checks that variable declarat ion cannot contain 'const', 'final' and 'var' simultaneously.
331 Language/05_Variables/05_Variables_A07_t07: Fail # Checks that a compile-time er ror occurs if a global constant variable is not initialized at declaration. 331 Language/05_Variables/05_Variables_A07_t07: Fail # Checks that a compile-time er ror occurs if a global constant variable is not initialized at declaration.
332 Language/05_Variables/05_Variables_A07_t08: Fail # Checks that a compile-time er ror occurs if a global typed constant variable is not initialized at declaration . 332 Language/05_Variables/05_Variables_A07_t08: Fail # Checks that a compile-time er ror occurs if a global typed constant variable is not initialized at declaration .
333 Language/05_Variables/05_Variables_A08_t01: Fail # Checks that a compile-time er ror occurs if a constant variable is not initialized. 333 Language/05_Variables/05_Variables_A08_t01: Fail # Checks that a compile-time er ror occurs if a constant variable is not initialized.
334 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.
335 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 334 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
336 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t06: Fail # Che cks that a functionSignature parameter cannot be final. 335 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t06: Fail # Che cks that a functionSignature parameter cannot be final.
337 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t07: Fail # Che cks that a functionSignature parameter cannot be declared as variable. 336 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t07: Fail # Che cks that a functionSignature parameter cannot be declared as variable.
338 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t03: Fail # TOD O(ahe): Enforce optional parameter semantics. 337 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t03: Fail # TOD O(ahe): Enforce optional parameter semantics.
339 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t04: Fail # TOD O(ahe): Enforce optional parameter semantics. 338 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t04: Fail # TOD O(ahe): Enforce optional parameter semantics.
340 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.
341 Language/06_Functions/2_Formal_Parameters_A03_t02: Fail # Checks that it is a co mpile-time error if a required parameter is declared as a constant typed variabl e.
342 Language/06_Functions/2_Formal_Parameters_A03_t03: Fail # TODO(ahe): Enforce opt ional parameter semantics.
343 Language/06_Functions/2_Formal_Parameters_A03_t04: Fail # TODO(ahe): Enforce opt ional parameter semantics.
344 Language/06_Functions/2_Formal_Parameters_A03_t05: Fail # Checks that it is a co mpile-time error if an optional named parameter is declared as a constant typed variable.
345 Language/06_Functions/2_Formal_Parameters_A03_t05: Fail # Checks that it is a co mpile-time error if an optional positional parameter is declared as a constant v ariable.
346 Language/06_Functions/2_Formal_Parameters_A03_t06: Fail # TODO(ahe): Enforce opt ional parameter semantics.
347 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. 339 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.
348 Language/07_Classes/07_Classes_A11_t01: Fail # Checks that a class name cannot b e used as a name of a member variable. 340 Language/07_Classes/07_Classes_A11_t01: Fail # Checks that a class name cannot b e used as a name of a member variable.
349 Language/07_Classes/07_Classes_A11_t03: Fail # Checks that a class name cannot b e used as a name of a static variable. 341 Language/07_Classes/07_Classes_A11_t03: Fail # Checks that a class name cannot b e used as a name of a static variable.
350 Language/12_Expressions/01_Constants_A20_t03: Fail # Checks that an identifier e xpression that denotes a type parameter can not be assigned to a constant varia ble. 342 Language/12_Expressions/01_Constants_A20_t03: Fail # Checks that an identifier e xpression that denotes a type parameter can not be assigned to a constant varia ble.
351 Language/12_Expressions/05_Strings/1_String_Interpolation_A01_t09: Fail # Checks that it is a compile-time error if a string interpolation construct does not st art with IDENTIFIER_NO_DOLLAR or opening brace. 343 Language/12_Expressions/05_Strings/1_String_Interpolation_A01_t09: Fail # Checks that it is a compile-time error if a string interpolation construct does not st art with IDENTIFIER_NO_DOLLAR or opening brace.
352 Language/12_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. 344 Language/12_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.
353 Language/12_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. 345 Language/12_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.
354 Language/12_Expressions/22_Equality_A01_t15: Fail # Checks that equality express ions cannot be operands of another equality expression. 346 Language/12_Expressions/22_Equality_A01_t15: Fail # Checks that equality express ions cannot be operands of another equality expression.
355 Language/12_Expressions/22_Equality_A01_t16: Fail # Checks that equality express ions cannot be operands of another equality expression. 347 Language/12_Expressions/22_Equality_A01_t16: Fail # Checks that equality express ions cannot be operands of another equality expression.
356 Language/12_Expressions/23_Relational_Expressions_A01_t10: Fail # Checks that a relational expression cannot be the operand of another relational expression. 348 Language/12_Expressions/23_Relational_Expressions_A01_t10: Fail # Checks that a relational expression cannot be the operand of another relational expression.
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 LibTest/typed_data/Float32List/runtimeType_A01_t01: fail # co19-roll r559: Pleas e triage this failure 653 LibTest/typed_data/Float32List/runtimeType_A01_t01: fail # co19-roll r559: Pleas e triage this failure
662 LibTest/typed_data/Float32x4List/runtimeType_A01_t01: fail # co19-roll r559: Ple ase triage this failure 654 LibTest/typed_data/Float32x4List/runtimeType_A01_t01: fail # co19-roll r559: Ple ase triage this failure
663 LibTest/typed_data/Float64List/runtimeType_A01_t01: fail # co19-roll r559: Pleas e triage this failure 655 LibTest/typed_data/Float64List/runtimeType_A01_t01: fail # co19-roll r559: Pleas e triage this failure
664 LibTest/typed_data/Int16List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure 656 LibTest/typed_data/Int16List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure
665 LibTest/typed_data/Int32List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure 657 LibTest/typed_data/Int32List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure
666 LibTest/typed_data/Int8List/runtimeType_A01_t01: fail # co19-roll r559: Please t riage this failure 658 LibTest/typed_data/Int8List/runtimeType_A01_t01: fail # co19-roll r559: Please t riage this failure
667 LibTest/typed_data/Uint16List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure 659 LibTest/typed_data/Uint16List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure
668 LibTest/typed_data/Uint32List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure 660 LibTest/typed_data/Uint32List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure
669 LibTest/typed_data/Uint8ClampedList/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure 661 LibTest/typed_data/Uint8ClampedList/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure
670 LibTest/typed_data/Uint8List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure 662 LibTest/typed_data/Uint8List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure
671
672 [ $compiler == dart2js || $compiler == dart2dart ]
673 Language/07_Classes/6_Constructors/1_Generative_Constructors_A15_t08: fail # co1 9-roll r569: Please triage this failure
674
OLDNEW
« no previous file with comments | « tests/co19/co19-dart2dart.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698