| 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 # 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 && $host_checked ] | 7 [ $compiler == dart2js && $host_checked ] |
| 8 Language/13_Libraries_and_Scripts/5_URIs_A01_t15: Crash # Issue 6931 | 8 Language/13_Libraries_and_Scripts/5_URIs_A01_t15: Crash # Issue 6931 |
| 9 Language/13_Libraries_and_Scripts/5_URIs_A01_t14: Crash # Issue 6931 | 9 Language/13_Libraries_and_Scripts/5_URIs_A01_t14: Crash # Issue 6931 |
| 10 | 10 |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 Language/07_Classes/1_Instance_Methods/2_Operators_A07_t02: Fail # Checks that a
compile-time error is produced if a user-defined operator [] specifies an optio
nal named parameter in addition to the required one. | 528 Language/07_Classes/1_Instance_Methods/2_Operators_A07_t02: Fail # Checks that a
compile-time error is produced if a user-defined operator [] specifies an optio
nal named parameter in addition to the required one. |
| 529 Language/07_Classes/1_Instance_Methods/2_Operators_A07_t03: Fail # Checks that a
compile-time error is produced if a user-defined operator []= specifies one opt
ional named parameter. | 529 Language/07_Classes/1_Instance_Methods/2_Operators_A07_t03: Fail # Checks that a
compile-time error is produced if a user-defined operator []= specifies one opt
ional named parameter. |
| 530 Language/07_Classes/1_Instance_Methods/2_Operators_A07_t04: Fail # Checks that a
compile-time error is produced if a user-defined operator []= specifies one opt
ional named parameter in addition to the two required ones | 530 Language/07_Classes/1_Instance_Methods/2_Operators_A07_t04: Fail # Checks that a
compile-time error is produced if a user-defined operator []= specifies one opt
ional named parameter in addition to the two required ones |
| 531 Language/07_Classes/1_Instance_Methods_A02_t02: Fail # Checks that a compile-tim
e error is produced if m1 has fewer named parameters than m2 (1 vs. 0) and neith
er have any required parameters. | 531 Language/07_Classes/1_Instance_Methods_A02_t02: Fail # Checks that a compile-tim
e error is produced if m1 has fewer named parameters than m2 (1 vs. 0) and neith
er have any required parameters. |
| 532 Language/07_Classes/1_Instance_Methods_A02_t05: Fail # Checks that a compile-tim
e error is produced if m1 has almost the same set of named parameters as m2 exc
ept for one of them having a different name. | 532 Language/07_Classes/1_Instance_Methods_A02_t05: Fail # Checks that a compile-tim
e error is produced if m1 has almost the same set of named parameters as m2 exc
ept for one of them having a different name. |
| 533 Language/07_Classes/2_Getters_A01_t03: Fail # Checks that a compile-time error i
s produced if empty formal parameter list is present. | 533 Language/07_Classes/2_Getters_A01_t03: Fail # Checks that a compile-time error i
s produced if empty formal parameter list is present. |
| 534 Language/07_Classes/2_Getters_A01_t04: Fail # Checks that a compile-time error i
s produced if non-empty formal parameter list is present. | 534 Language/07_Classes/2_Getters_A01_t04: Fail # Checks that a compile-time error i
s produced if non-empty formal parameter list is present. |
| 535 Language/07_Classes/2_Getters_A01_t05: Fail # Checks that a compile-time error i
s produced if an static getter has empty formal parameter list. | 535 Language/07_Classes/2_Getters_A01_t05: Fail # Checks that a compile-time error i
s produced if an static getter has empty formal parameter list. |
| 536 Language/07_Classes/2_Getters_A01_t06: Fail # Checks that a compile-time error i
s produced if an arbitrary static getter specifies a single formal parameter. | 536 Language/07_Classes/2_Getters_A01_t06: Fail # Checks that a compile-time error i
s produced if an arbitrary static getter specifies a single formal parameter. |
| 537 Language/07_Classes/2_Getters_A01_t07: Fail # Checks that a compile-time error i
s produced if an arbitrary instance getter specifies a single formal parameter. | 537 Language/07_Classes/2_Getters_A01_t07: Fail # Checks that a compile-time error i
s produced if an arbitrary instance getter specifies a single formal parameter. |
| 538 Language/07_Classes/3_Setters_A03_t01: Fail # Checks that a compile-time error i
s produced if a setter's formal parameter list contains two required parameters. | |
| 539 Language/07_Classes/3_Setters_A03_t02: Fail # Checks that a compile-time error i
s produced if a setter's formal parameter list consists of a single optional par
ameter. | |
| 540 Language/07_Classes/3_Setters_A03_t03: Fail # Checks that a compile-time error i
s produced if a setter's formal parameter list is empty. | |
| 541 Language/07_Classes/3_Setters_A03_t04: Fail # Checks that a compile-time error i
s produced if a setter's formal parameter list contains a single optional parame
ter with a default value. | |
| 542 Language/07_Classes/3_Setters_A03_t05: Fail # Checks that a compile-time error i
s produced if a static setter's formal parameter list contains two required para
meters. | |
| 543 Language/07_Classes/3_Setters_A03_t06: Fail # Checks that a compile-time error i
s produced if a static setter's formal parameter list consists of a single optio
nal parameter. | |
| 544 Language/07_Classes/3_Setters_A03_t07: Fail # Checks that a compile-time error i
s produced if a static setter's formal parameter list is empty. | |
| 545 Language/07_Classes/3_Setters_A03_t08: Fail # Checks that a compile-time error i
s produced if a static setter's formal parameter list contains a single optional
parameter with a default value. | |
| 546 Language/07_Classes/4_Abstract_Instance_Members_A04_t01: Fail # Checks that a co
mpile-time error is produced when the overriding abstract method has fewer named
parameters than the instance method being overridden (2 vs 3) and neither have
any required parameters. | 538 Language/07_Classes/4_Abstract_Instance_Members_A04_t01: Fail # Checks that a co
mpile-time error is produced when the overriding abstract method has fewer named
parameters than the instance method being overridden (2 vs 3) and neither have
any required parameters. |
| 547 Language/07_Classes/4_Abstract_Instance_Members_A04_t05: Fail # Checks that a co
mpile-time error is produced when the overriding non-abstract instance method h
as the same set of named parameters as the abstract method being overriden, but
in a different order. | 539 Language/07_Classes/4_Abstract_Instance_Members_A04_t05: Fail # Checks that a co
mpile-time error is produced when the overriding non-abstract instance method h
as the same set of named parameters as the abstract method being overriden, but
in a different order. |
| 548 Language/07_Classes/4_Abstract_Instance_Members_A04_t06: Fail # Checks that a co
mpile-time error is produced when the overriding non-abstract instance method h
as almost the same set of named parameters as the abstract method being override
n, except for one that has a different name. | 540 Language/07_Classes/4_Abstract_Instance_Members_A04_t06: Fail # Checks that a co
mpile-time error is produced when the overriding non-abstract instance method h
as almost the same set of named parameters as the abstract method being override
n, except for one that has a different name. |
| 549 Language/07_Classes/6_Constructors/1_Generative_Constructors_A03_t05: Fail # Che
cks that redirecting constructor can not have initializing formals. | 541 Language/07_Classes/6_Constructors/1_Generative_Constructors_A03_t05: Fail # Che
cks that redirecting constructor can not have initializing formals. |
| 550 Language/07_Classes/6_Constructors/1_Generative_Constructors_A09_t01: Fail # Che
cks that error is produced if a final variable is not initialized in one of the
specified ways. | 542 Language/07_Classes/6_Constructors/1_Generative_Constructors_A09_t01: Fail # Che
cks that error is produced if a final variable is not initialized in one of the
specified ways. |
| 551 Language/07_Classes/6_Constructors/1_Generative_Constructors_A21_t01: Fail # Che
cks that a compile-time error occur if k’s initializer list contains an initiali
zer for a final variable whose declaration includes an initialization expression. | 543 Language/07_Classes/6_Constructors/1_Generative_Constructors_A21_t01: Fail # Che
cks that a compile-time error occur if k’s initializer list contains an initiali
zer for a final variable whose declaration includes an initialization expression. |
| 552 Language/07_Classes/6_Constructors/3_Constant_Constructors_A03_t01: Fail # Check
s that a compile-time error is produced when a class with constant constructor
also declares a non-final instance variable. | 544 Language/07_Classes/6_Constructors/3_Constant_Constructors_A03_t01: Fail # Check
s that a compile-time error is produced when a class with constant constructor
also declares a non-final instance variable. |
| 553 Language/07_Classes/6_Constructors/3_Constant_Constructors_A03_t02: Fail # Check
s that compile-time error is produced when a class with constant constructor inh
erits a non-final instance variable. | 545 Language/07_Classes/6_Constructors/3_Constant_Constructors_A03_t02: Fail # Check
s that compile-time error is produced when a class with constant constructor inh
erits a non-final instance variable. |
| 554 Language/07_Classes/6_Constructors_A01_t01: Fail # Checks that a compile-error i
s produced when a constructor's id coincides with the name of a field in the sam
e class. | 546 Language/07_Classes/6_Constructors_A01_t01: Fail # Checks that a compile-error i
s produced when a constructor's id coincides with the name of a field in the sam
e class. |
| 555 Language/07_Classes/6_Constructors_A02_t01: Fail # Checks that a compile-error i
s produced when a named constructor definition does not begin with the name of i
ts class. | 547 Language/07_Classes/6_Constructors_A02_t01: Fail # Checks that a compile-error i
s produced when a named constructor definition does not begin with the name of i
ts class. |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 Language/14_Types/4_Interface_Types_A10_t01: Fail # http://dartbug.com/5020 | 615 Language/14_Types/4_Interface_Types_A10_t01: Fail # http://dartbug.com/5020 |
| 624 Language/14_Types/4_Interface_Types_A10_t02: Fail # http://dartbug.com/5020 | 616 Language/14_Types/4_Interface_Types_A10_t02: Fail # http://dartbug.com/5020 |
| 625 Language/14_Types/4_Interface_Types_A10_t03: Fail # http://dartbug.com/5020 | 617 Language/14_Types/4_Interface_Types_A10_t03: Fail # http://dartbug.com/5020 |
| 626 Language/14_Types/4_Interface_Types_A10_t04: Fail # http://dartbug.com/5020 | 618 Language/14_Types/4_Interface_Types_A10_t04: Fail # http://dartbug.com/5020 |
| 627 Language/14_Types/4_Interface_Types_A10_t07: Fail # http://dartbug.com/5020 | 619 Language/14_Types/4_Interface_Types_A10_t07: Fail # http://dartbug.com/5020 |
| 628 Language/14_Types/4_Interface_Types_A11_t02: Fail # http://dartbug.com/5020 | 620 Language/14_Types/4_Interface_Types_A11_t02: Fail # http://dartbug.com/5020 |
| 629 Language/14_Types/4_Interface_Types_A12_t09: Fail # http://dartbug.com/5020 | 621 Language/14_Types/4_Interface_Types_A12_t09: Fail # http://dartbug.com/5020 |
| 630 Language/14_Types/4_Interface_Types_A12_t10: Fail # http://dartbug.com/5020 | 622 Language/14_Types/4_Interface_Types_A12_t10: Fail # http://dartbug.com/5020 |
| 631 Language/14_Types/4_Interface_Types_A12_t14: Fail # http://dartbug.com/5020 | 623 Language/14_Types/4_Interface_Types_A12_t14: Fail # http://dartbug.com/5020 |
| 632 Language/14_Types/4_Interface_Types_A12_t16 :Fail # http://dartbug.com/5020 | 624 Language/14_Types/4_Interface_Types_A12_t16 :Fail # http://dartbug.com/5020 |
| OLD | NEW |