| OLD | NEW |
| 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 | 5 |
| 6 # Crashes first, please. Then untriaged bugs. There is a section below | 6 # Crashes first, please. Then untriaged bugs. There is a section below |
| 7 # for co19 bugs. | 7 # for co19 bugs. |
| 8 [ $compiler == dart2js ] | 8 [ $compiler == dart2js ] |
| 9 Language/07_Classes/6_Constructors/2_Factories_A01_t01: Crash # http://dartbug.c
om/5017 | 9 Language/07_Classes/6_Constructors/2_Factories_A01_t01: Crash # http://dartbug.c
om/5017 |
| 10 Language/13_Libraries_and_Scripts/2_Imports_A03_t07: Crash # http://dartbug.com/
5429 | 10 Language/13_Libraries_and_Scripts/2_Imports_A03_t07: Crash # http://dartbug.com/
5429 |
| (...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 Language/05_Variables/05_Variables_A04_t01: Fail # Checks that a compile-time er
ror occurs if a local constant variable is redefined. | 540 Language/05_Variables/05_Variables_A04_t01: Fail # Checks that a compile-time er
ror occurs if a local constant variable is redefined. |
| 541 Language/05_Variables/05_Variables_A04_t02: Fail # Checks that a compile-time er
ror occurs if a local typed constant variable is redefined. | 541 Language/05_Variables/05_Variables_A04_t02: Fail # Checks that a compile-time er
ror occurs if a local typed constant variable is redefined. |
| 542 Language/05_Variables/05_Variables_A04_t03: Fail # Checks that a compile-time er
ror occurs if a global constant variable is redefined. | 542 Language/05_Variables/05_Variables_A04_t03: Fail # Checks that a compile-time er
ror occurs if a global constant variable is redefined. |
| 543 Language/05_Variables/05_Variables_A04_t04: Fail # Checks that a compile-time er
ror occurs if a global typed constant variable is redefined. | 543 Language/05_Variables/05_Variables_A04_t04: Fail # Checks that a compile-time er
ror occurs if a global typed constant variable is redefined. |
| 544 Language/05_Variables/05_Variables_A04_t05: Fail # Checks that a compile-time er
ror occurs if a local constant variable is not initialized at declaration. | 544 Language/05_Variables/05_Variables_A04_t05: Fail # Checks that a compile-time er
ror occurs if a local constant variable is not initialized at declaration. |
| 545 Language/05_Variables/05_Variables_A04_t06: Fail # Checks that a compile-time er
ror occurs if a local typed constant variable is not initialized at declaration. | 545 Language/05_Variables/05_Variables_A04_t06: Fail # Checks that a compile-time er
ror occurs if a local typed constant variable is not initialized at declaration. |
| 546 Language/05_Variables/05_Variables_A04_t07: Fail # Checks that a compile-time er
ror occurs if a global constant variable is not initialized at declaration. | 546 Language/05_Variables/05_Variables_A04_t07: Fail # Checks that a compile-time er
ror occurs if a global constant variable is not initialized at declaration. |
| 547 Language/05_Variables/05_Variables_A04_t08: Fail # Checks that a compile-time er
ror occurs if a global typed constant variable is not initialized at declaration
. | 547 Language/05_Variables/05_Variables_A04_t08: Fail # Checks that a compile-time er
ror occurs if a global typed constant variable is not initialized at declaration
. |
| 548 Language/05_Variables/05_Variables_A04_t10: Fail # Checks that assigning a const
ant variable to the same value it already holds still produces a compile-time er
ror. | 548 Language/05_Variables/05_Variables_A04_t10: Fail # Checks that assigning a const
ant variable to the same value it already holds still produces a compile-time er
ror. |
| 549 Language/05_Variables/05_Variables_A05_t01: Fail # Checks that a compile-time er
ror occurs if a constant variable is not initialized. | 549 Language/05_Variables/05_Variables_A05_t01: Fail # Checks that a compile-time er
ror occurs if a constant variable is not initialized. |
| 550 Language/05_Variables/05_Variables_A08_t02: Fail # Checks that it is a compile-t
ime error if a top level variable declaration is prefaced with the built-in iden
tifier static. | |
| 551 Language/05_Variables/05_Variables_A08_t03: Fail # Checks that it is a compile-t
ime error if a top level typed variable declaration is prefaced with the built-i
n identifier static. | |
| 552 Language/05_Variables/05_Variables_A08_t04: Fail # Checks that it is a compile-t
ime error if a top level final variable declaration is prefaced with the built-i
n identifier static. | |
| 553 Language/05_Variables/05_Variables_A08_t05: Fail # Checks that it is a compile-t
ime error if a top level final typed variable declaration is prefaced with the b
uilt-in identifier static. | |
| 554 Language/05_Variables/05_Variables_A08_t06: Fail # Checks that it is a compile-t
ime error if a top level constant variable declaration is prefaced with the buil
t-in identifier static. | |
| 555 Language/05_Variables/05_Variables_A08_t07: Fail # Checks that it is a compile-t
ime error if a top level constant typed variable declaration is prefaced with th
e built-in identifier static. | |
| 556 Language/06_Functions/06_Functions_A01_t06: Fail # Checks that it is a compile e
rror if a block of a function body isn't closed | 550 Language/06_Functions/06_Functions_A01_t06: Fail # Checks that it is a compile e
rror if a block of a function body isn't closed |
| 557 Language/06_Functions/06_Functions_A01_t31: Fail # Checks that functions can't b
e declared as static inside of a function body. | 551 Language/06_Functions/06_Functions_A01_t31: Fail # Checks that functions can't b
e declared as static inside of a function body. |
| 558 Language/06_Functions/1_Function_Declaration_A01_t01: Fail # Checks that it is a
compile-time error to preface library function with 'static'. | 552 Language/06_Functions/1_Function_Declaration_A01_t01: Fail # Checks that it is a
compile-time error to preface library function with 'static'. |
| 559 Language/06_Functions/1_Function_Declaration_A02_t02: Fail # Checks that 'id' is
not assignable since its declaration is equivalent to a final variable declarat
ion. | 553 Language/06_Functions/1_Function_Declaration_A02_t02: Fail # Checks that 'id' is
not assignable since its declaration is equivalent to a final variable declarat
ion. |
| 560 Language/06_Functions/1_Function_Declaration_A03_t02: Fail # Checks that 'id' is
not assignable since its declaration is equivalent to the final variable declar
ation. | 554 Language/06_Functions/1_Function_Declaration_A03_t02: Fail # Checks that 'id' is
not assignable since its declaration is equivalent to the final variable declar
ation. |
| 561 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. | 555 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. |
| 562 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 | 556 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 |
| 563 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. | 557 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. |
| 564 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t06: Fail # Che
cks that a functionSignature parameter cannot be final. | 558 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t06: Fail # Che
cks that a functionSignature parameter cannot be final. |
| 565 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t07: Fail # Che
cks that a functionSignature parameter cannot be declared as variable. | 559 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t07: Fail # Che
cks that a functionSignature parameter cannot be declared as variable. |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 Language/11_Statements/08_Switch_A06_t04: Fail # Checks that it is a compile-tim
e error if a case expression is a compile-time constant of type double. | 657 Language/11_Statements/08_Switch_A06_t04: Fail # Checks that it is a compile-tim
e error if a case expression is a compile-time constant of type double. |
| 664 Language/11_Statements/10_Return_A04_t01: Fail # Checks that a compile-time erro
r occurs if a return statement of the form return e; appears in a generative co
nstructor. | 658 Language/11_Statements/10_Return_A04_t01: Fail # Checks that a compile-time erro
r occurs if a return statement of the form return e; appears in a generative co
nstructor. |
| 665 Language/11_Statements/10_Return_A04_t02: Fail # Checks that a compile-time erro
r occurs if a return statement of the form return e; appears in a named generat
ive constructor. | 659 Language/11_Statements/10_Return_A04_t02: Fail # Checks that a compile-time erro
r occurs if a return statement of the form return e; appears in a named generat
ive constructor. |
| 666 Language/11_Statements/10_Return_A04_t03: Fail # Checks that a compile-time erro
r occurs if a return statement of the form return e; appears in a generative co
nstructor. | 660 Language/11_Statements/10_Return_A04_t03: Fail # Checks that a compile-time erro
r occurs if a return statement of the form return e; appears in a generative co
nstructor. |
| 667 Language/14_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 a type alias). | 661 Language/14_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 a type alias). |
| 668 Language/14_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 a type alias). | 662 Language/14_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 a type alias). |
| 669 Language/14_Types/3_Type_Declarations/1_Typedef_A07_t03: Fail # Checks that self
-referencing typedef is not allowed (optional formal parameter type annotation h
as the same name as a type alias). | 663 Language/14_Types/3_Type_Declarations/1_Typedef_A07_t03: Fail # Checks that self
-referencing typedef is not allowed (optional formal parameter type annotation h
as the same name as a type alias). |
| 670 Language/15_Reference/1_Lexical_Rules/1_Reserved_Words_A30_t04: Fail # Checks th
at other Unicode whitespaces are not allowed: check NO-BREAK SPACE (U+00A0) | 664 Language/15_Reference/1_Lexical_Rules/1_Reserved_Words_A30_t04: Fail # Checks th
at other Unicode whitespaces are not allowed: check NO-BREAK SPACE (U+00A0) |
| 671 Language/15_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. | 665 Language/15_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. |
| 672 | 666 |
| 673 Language/05_Variables/05_Variables_A08_t01: Fail # http://dartbug.com/5170 | |
| 674 | |
| 675 | 667 |
| 676 # | 668 # |
| 677 # Unexpected compile-time errors. | 669 # Unexpected compile-time errors. |
| 678 # | 670 # |
| 679 [ $compiler == dart2js ] | 671 [ $compiler == dart2js ] |
| 680 Language/10_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t03: Fail #
http://dartbug.com/5027 | 672 Language/10_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t03: Fail #
http://dartbug.com/5027 |
| 681 Language/10_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t06: Fail #
http://dartbug.com/5027 | 673 Language/10_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t06: Fail #
http://dartbug.com/5027 |
| 682 | 674 |
| 683 Language/14_Types/2_Dynamic_Type_System_A02_t01: Fail # http://dartbug.com/5029 | 675 Language/14_Types/2_Dynamic_Type_System_A02_t01: Fail # http://dartbug.com/5029 |
| 684 Language/10_Expressions/30_Type_Cast_A03_t01: Fail # http://dartbug.com/5029 | 676 Language/10_Expressions/30_Type_Cast_A03_t01: Fail # http://dartbug.com/5029 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 Language/14_Types/4_Interface_Types_A10_t01: Fail # http://dartbug.com/5020 | 764 Language/14_Types/4_Interface_Types_A10_t01: Fail # http://dartbug.com/5020 |
| 773 Language/14_Types/4_Interface_Types_A10_t02: Fail # http://dartbug.com/5020 | 765 Language/14_Types/4_Interface_Types_A10_t02: Fail # http://dartbug.com/5020 |
| 774 Language/14_Types/4_Interface_Types_A10_t03: Fail # http://dartbug.com/5020 | 766 Language/14_Types/4_Interface_Types_A10_t03: Fail # http://dartbug.com/5020 |
| 775 Language/14_Types/4_Interface_Types_A10_t04: Fail # http://dartbug.com/5020 | 767 Language/14_Types/4_Interface_Types_A10_t04: Fail # http://dartbug.com/5020 |
| 776 Language/14_Types/4_Interface_Types_A10_t07: Fail # http://dartbug.com/5020 | 768 Language/14_Types/4_Interface_Types_A10_t07: Fail # http://dartbug.com/5020 |
| 777 Language/14_Types/4_Interface_Types_A11_t02: Fail # http://dartbug.com/5020 | 769 Language/14_Types/4_Interface_Types_A11_t02: Fail # http://dartbug.com/5020 |
| 778 Language/14_Types/4_Interface_Types_A12_t09: Fail # http://dartbug.com/5020 | 770 Language/14_Types/4_Interface_Types_A12_t09: Fail # http://dartbug.com/5020 |
| 779 Language/14_Types/4_Interface_Types_A12_t10: Fail # http://dartbug.com/5020 | 771 Language/14_Types/4_Interface_Types_A12_t10: Fail # http://dartbug.com/5020 |
| 780 Language/14_Types/4_Interface_Types_A12_t14: Fail # http://dartbug.com/5020 | 772 Language/14_Types/4_Interface_Types_A12_t14: Fail # http://dartbug.com/5020 |
| 781 Language/14_Types/4_Interface_Types_A12_t16 :Fail # http://dartbug.com/5020 | 773 Language/14_Types/4_Interface_Types_A12_t16 :Fail # http://dartbug.com/5020 |
| OLD | NEW |