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

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

Issue 24073002: Emit error on default values in typedefs. (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
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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 Language/13_Statements/03_Variable_Declaration_A04_t01: Fail # Checks that a var iable declaration statement var e = e; causes a compile-time error. 317 Language/13_Statements/03_Variable_Declaration_A04_t01: Fail # Checks that a var iable declaration statement var e = e; causes a compile-time error.
318 Language/13_Statements/03_Variable_Declaration_A04_t02: Fail # Checks that a var iable declaration statement T e = e; causes a compile-time error. 318 Language/13_Statements/03_Variable_Declaration_A04_t02: Fail # Checks that a var iable declaration statement T e = e; causes a compile-time error.
319 Language/13_Statements/03_Variable_Declaration_A04_t03: Fail # Checks that a var iable declaration statement const e = e; causes a compile-time error. 319 Language/13_Statements/03_Variable_Declaration_A04_t03: Fail # Checks that a var iable declaration statement const e = e; causes a compile-time error.
320 Language/13_Statements/03_Variable_Declaration_A04_t04: Fail # Checks that a var iable declaration statement const T e = e; causes a compile-time error. 320 Language/13_Statements/03_Variable_Declaration_A04_t04: Fail # Checks that a var iable declaration statement const T e = e; causes a compile-time error.
321 Language/13_Statements/03_Variable_Declaration_A04_t05: Fail # Checks that a var iable declaration statement final e = e; causes a compile-time error. 321 Language/13_Statements/03_Variable_Declaration_A04_t05: Fail # Checks that a var iable declaration statement final e = e; causes a compile-time error.
322 Language/13_Statements/03_Variable_Declaration_A04_t06: Fail # Checks that a var iable declaration statement final T e = e; causes a compile-time error. 322 Language/13_Statements/03_Variable_Declaration_A04_t06: Fail # Checks that a var iable declaration statement final T e = e; causes a compile-time error.
323 Language/13_Statements/03_Variable_Declaration_A04_t07: Fail # Checks that a var iable declaration statement var e = e; causes a compile-time error. A top-level variable with the same name is declared. 323 Language/13_Statements/03_Variable_Declaration_A04_t07: Fail # Checks that a var iable declaration statement var e = e; causes a compile-time error. A top-level variable with the same name is declared.
324 Language/13_Statements/03_Variable_Declaration_A04_t08: Fail # Checks that it is a compile-time error if the initializing expression of a local variable v refer s to the name v= even when a top-level variable with the same name is declared. 324 Language/13_Statements/03_Variable_Declaration_A04_t08: Fail # Checks that it is a compile-time error if the initializing expression of a local variable v refer s to the name v= even when a top-level variable with the same name is declared.
325 Language/14_Libraries_and_Scripts/5_URIs_A01_t24: Fail # Checks that it is a com pile-time error when the URI in a part directive consists of two adjacent string literals instead of one. 325 Language/14_Libraries_and_Scripts/5_URIs_A01_t24: Fail # Checks that it is a com pile-time error when the URI in a part directive consists of two adjacent string literals instead of one.
326 Language/14_Libraries_and_Scripts/5_URIs_A01_t25: Fail # Checks that it is a com pile-time error when the URI in a part directive consists of two adjacent multi- line string literals instead of one. 326 Language/14_Libraries_and_Scripts/5_URIs_A01_t25: Fail # Checks that it is a com pile-time error when the URI in a part directive consists of two adjacent multi- line string literals instead of one.
327 Language/15_Types/3_Type_Declarations/1_Typedef_A06_t01: Fail # Checks that a co mpile error is produced when a null default value is specified for a required ar gument in a function type alias.
328 Language/15_Types/3_Type_Declarations/1_Typedef_A06_t02: Fail # Checks that a co mpile error is produced when a default value is specified for an optional positi onal argument in a function type alias.
329 Language/15_Types/3_Type_Declarations/1_Typedef_A06_t03: Fail # Checks that a co mpile error is produced when a default value is specified for an optional named argument in a function type alias.
330 Language/15_Types/3_Type_Declarations/1_Typedef_A06_t04: Fail # Checks that a co mpile error is produced when a default value is specified for one of the require d arguments in a function type alias.
331 Language/15_Types/3_Type_Declarations/1_Typedef_A06_t05: Fail # Checks that a co mpile error is produced when default values are specified for several parameters in a function type alias.
332 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t01: Fail # Checks that self -referencing typedef is not allowed (return value type annotation has the same n ame as the type alias). 327 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t01: Fail # Checks that self -referencing typedef is not allowed (return value type annotation has the same n ame as the type alias).
333 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t02: Fail # Checks that self -referencing typedef is not allowed (positional formal parameter type annotation has the same name as the type alias). 328 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t02: Fail # Checks that self -referencing typedef is not allowed (positional formal parameter type annotation has the same name as the type alias).
334 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t03: Fail # Checks that self -referencing typedef is not allowed (positional optional parameter type annotati on has the same name as the type alias). 329 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t03: Fail # Checks that self -referencing typedef is not allowed (positional optional parameter type annotati on has the same name as the type alias).
335 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t04: Fail # Checks that self -referencing typedef is not allowed (named optional parameter type annotation ha s the same name as the type alias). 330 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t04: Fail # Checks that self -referencing typedef is not allowed (named optional parameter type annotation ha s the same name as the type alias).
336 Language/16_Reference/1_Lexical_Rules/1_Reserved_Words_A40_t04: Fail # Checks th at other Unicode whitespaces are not allowed: check NO-BREAK SPACE (U+00A0) 331 Language/16_Reference/1_Lexical_Rules/1_Reserved_Words_A40_t04: Fail # Checks th at other Unicode whitespaces are not allowed: check NO-BREAK SPACE (U+00A0)
337 Language/16_Reference/1_Lexical_Rules_A02_t06: Fail # Checks that Unicode whites paces other than WHITESPACE are not permitted in the source code. Checks symbol U+00a0. 332 Language/16_Reference/1_Lexical_Rules_A02_t06: Fail # Checks that Unicode whites paces other than WHITESPACE are not permitted in the source code. Checks symbol U+00a0.
338 333
339 334
340 # 335 #
341 # Unexpected compile-time errors. 336 # Unexpected compile-time errors.
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 LibTest/typed_data/Int8List/runtimeType_A01_t01: fail # co19-roll r559: Please t riage this failure 656 LibTest/typed_data/Int8List/runtimeType_A01_t01: fail # co19-roll r559: Please t riage this failure
662 LibTest/typed_data/Uint16List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure 657 LibTest/typed_data/Uint16List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure
663 LibTest/typed_data/Uint32List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure 658 LibTest/typed_data/Uint32List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure
664 LibTest/typed_data/Uint8ClampedList/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure 659 LibTest/typed_data/Uint8ClampedList/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure
665 LibTest/typed_data/Uint8List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure 660 LibTest/typed_data/Uint8List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure
666 661
667 [ $compiler == dart2js || $compiler == dart2dart ] 662 [ $compiler == dart2js || $compiler == dart2dart ]
668 Language/07_Classes/6_Constructors/1_Generative_Constructors_A15_t08: fail # co1 9-roll r569: Please triage this failure 663 Language/07_Classes/6_Constructors/1_Generative_Constructors_A15_t08: fail # co1 9-roll r569: Please triage this failure
669 664
670 665
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698