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

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

Issue 24091002: Emit a compile-time error when the name of a variable is referenced in the (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update co19 test expectations. 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') | tests/language/language_dart2js.status » ('j') | 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 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. 307 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.
308 Language/12_Expressions/22_Equality_A01_t15: Fail # Checks that equality express ions cannot be operands of another equality expression. 308 Language/12_Expressions/22_Equality_A01_t15: Fail # Checks that equality express ions cannot be operands of another equality expression.
309 Language/12_Expressions/22_Equality_A01_t16: Fail # Checks that equality express ions cannot be operands of another equality expression. 309 Language/12_Expressions/22_Equality_A01_t16: Fail # Checks that equality express ions cannot be operands of another equality expression.
310 Language/12_Expressions/23_Relational_Expressions_A01_t10: Fail # Checks that a relational expression cannot be the operand of another relational expression. 310 Language/12_Expressions/23_Relational_Expressions_A01_t10: Fail # Checks that a relational expression cannot be the operand of another relational expression.
311 Language/12_Expressions/23_Relational_Expressions_A01_t11: Fail # Checks that a relational expression cannot be the operand of another relational expression. 311 Language/12_Expressions/23_Relational_Expressions_A01_t11: Fail # Checks that a relational expression cannot be the operand of another relational expression.
312 Language/12_Expressions/23_Relational_Expressions_A01_t12: Fail # Checks that a relational expression cannot be the operand of another relational expression. 312 Language/12_Expressions/23_Relational_Expressions_A01_t12: Fail # Checks that a relational expression cannot be the operand of another relational expression.
313 Language/12_Expressions/23_Relational_Expressions_A01_t13: Fail # Checks that a relational expression cannot be the operand of another relational expression. 313 Language/12_Expressions/23_Relational_Expressions_A01_t13: Fail # Checks that a relational expression cannot be the operand of another relational expression.
314 Language/12_Expressions/30_Identifier_Reference_A04_t09: Fail # Checks that it i s a compile-time error when a built-in identifier dynamic is used as the declare d name of a type variable. 314 Language/12_Expressions/30_Identifier_Reference_A04_t09: Fail # Checks that it i s a compile-time error when a built-in identifier dynamic is used as the declare d name of a type variable.
315 Language/12_Expressions/30_Identifier_Reference_A05_t01: Fail # Checks that it i s a compile-time error when a built-in identifier "abstract" is used as a type a nnotation of a local variable. 315 Language/12_Expressions/30_Identifier_Reference_A05_t01: Fail # Checks that it i s a compile-time error when a built-in identifier "abstract" is used as a type a nnotation of a local variable.
316 Language/12_Expressions/30_Identifier_Reference_A05_t12: Fail # Checks that it i s a compile-time error when a built-in identifier "static" is used as a type ann otation of a local variable. 316 Language/12_Expressions/30_Identifier_Reference_A05_t12: Fail # Checks that it i s a compile-time error when a built-in identifier "static" is used as a type ann otation of a local variable.
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.
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.
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.
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.
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. 317 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. 318 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_A07_t01: Fail # Checks that self -referencing typedef is not allowed (return value type annotation has the same n ame as the type alias). 319 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).
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). 320 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).
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). 321 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).
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). 322 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).
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) 323 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)
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. 324 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.
333 325
334 326
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 LibTest/typed_data/Int8List/runtimeType_A01_t01: fail # co19-roll r559: Please t riage this failure 648 LibTest/typed_data/Int8List/runtimeType_A01_t01: fail # co19-roll r559: Please t riage this failure
657 LibTest/typed_data/Uint16List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure 649 LibTest/typed_data/Uint16List/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 650 LibTest/typed_data/Uint32List/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 651 LibTest/typed_data/Uint8ClampedList/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 652 LibTest/typed_data/Uint8List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure
661 653
662 [ $compiler == dart2js || $compiler == dart2dart ] 654 [ $compiler == dart2js || $compiler == dart2dart ]
663 Language/07_Classes/6_Constructors/1_Generative_Constructors_A15_t08: fail # co1 9-roll r569: Please triage this failure 655 Language/07_Classes/6_Constructors/1_Generative_Constructors_A15_t08: fail # co1 9-roll r569: Please triage this failure
664 656
665 657
OLDNEW
« no previous file with comments | « tests/co19/co19-dart2dart.status ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698