| 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 [ $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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 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. | 308 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. |
| 309 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. | 309 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. |
| 310 Language/13_Statements/03_Variable_Declaration_A04_t01: Fail # Checks that a var
iable declaration statement var e = e; causes a compile-time error. | 310 Language/13_Statements/03_Variable_Declaration_A04_t01: Fail # Checks that a var
iable declaration statement var e = e; causes a compile-time error. |
| 311 Language/13_Statements/03_Variable_Declaration_A04_t02: Fail # Checks that a var
iable declaration statement T e = e; causes a compile-time error. | 311 Language/13_Statements/03_Variable_Declaration_A04_t02: Fail # Checks that a var
iable declaration statement T e = e; causes a compile-time error. |
| 312 Language/13_Statements/03_Variable_Declaration_A04_t03: Fail # Checks that a var
iable declaration statement const e = e; causes a compile-time error. | 312 Language/13_Statements/03_Variable_Declaration_A04_t03: Fail # Checks that a var
iable declaration statement const e = e; causes a compile-time error. |
| 313 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. | 313 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. |
| 314 Language/13_Statements/03_Variable_Declaration_A04_t05: Fail # Checks that a var
iable declaration statement final e = e; causes a compile-time error. | 314 Language/13_Statements/03_Variable_Declaration_A04_t05: Fail # Checks that a var
iable declaration statement final e = e; causes a compile-time error. |
| 315 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. | 315 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. |
| 316 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. | 316 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. |
| 317 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. | 317 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. |
| 318 Language/13_Statements/11_Return_A05_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. | |
| 319 Language/13_Statements/11_Return_A05_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. | |
| 320 Language/13_Statements/11_Return_A05_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. | |
| 321 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. | 318 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. |
| 322 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. | 319 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. |
| 323 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. | 320 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. |
| 324 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. | 321 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. |
| 325 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. | 322 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. |
| 326 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. | 323 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. |
| 327 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. | 324 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. |
| 328 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). | 325 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). |
| 329 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). | 326 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). |
| 330 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). | 327 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). |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 LibTest/typed_data/Int8List/runtimeType_A01_t01: fail # co19-roll r559: Please t
riage this failure | 660 LibTest/typed_data/Int8List/runtimeType_A01_t01: fail # co19-roll r559: Please t
riage this failure |
| 664 LibTest/typed_data/Uint16List/runtimeType_A01_t01: fail # co19-roll r559: Please
triage this failure | 661 LibTest/typed_data/Uint16List/runtimeType_A01_t01: fail # co19-roll r559: Please
triage this failure |
| 665 LibTest/typed_data/Uint32List/runtimeType_A01_t01: fail # co19-roll r559: Please
triage this failure | 662 LibTest/typed_data/Uint32List/runtimeType_A01_t01: fail # co19-roll r559: Please
triage this failure |
| 666 LibTest/typed_data/Uint8ClampedList/runtimeType_A01_t01: fail # co19-roll r559:
Please triage this failure | 663 LibTest/typed_data/Uint8ClampedList/runtimeType_A01_t01: fail # co19-roll r559:
Please triage this failure |
| 667 LibTest/typed_data/Uint8List/runtimeType_A01_t01: fail # co19-roll r559: Please
triage this failure | 664 LibTest/typed_data/Uint8List/runtimeType_A01_t01: fail # co19-roll r559: Please
triage this failure |
| 668 | 665 |
| 669 [ $compiler == dart2js || $compiler == dart2dart ] | 666 [ $compiler == dart2js || $compiler == dart2dart ] |
| 670 Language/07_Classes/6_Constructors/1_Generative_Constructors_A15_t08: fail # co1
9-roll r569: Please triage this failure | 667 Language/07_Classes/6_Constructors/1_Generative_Constructors_A15_t08: fail # co1
9-roll r569: Please triage this failure |
| 671 | 668 |
| 672 | 669 |
| OLD | NEW |