| OLD | NEW |
| 1 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2013, 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 == dart2analyzer ] | 5 [ $compiler == dart2analyzer ] |
| 6 # not clear: g([var foo = foo + 10]) is parameter 'foo' in the scope of its own
initialzer? | 6 # not clear: g([var foo = foo + 10]) is parameter 'foo' in the scope of its own
initialzer? |
| 7 Language/06_Functions/2_Formal_Parameters_A02_t02: fail | 7 Language/06_Functions/2_Formal_Parameters_A02_t02: fail |
| 8 | 8 |
| 9 # not clear: null..[1](1)[2](2).foo(3, bar: 4)=5 - it seems that verything befor
e =5 it not assignable | 9 # not clear: null..[1](1)[2](2).foo(3, bar: 4)=5 - it seems that verything befor
e =5 it not assignable |
| 10 Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t15: fail | 10 Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t15: fail |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 # analyzer issue https://code.google.com/p/dart/issues/detail?id=11534 | 28 # analyzer issue https://code.google.com/p/dart/issues/detail?id=11534 |
| 29 Language/15_Types/4_Interface_Types_A11_t01: Skip | 29 Language/15_Types/4_Interface_Types_A11_t01: Skip |
| 30 Language/15_Types/4_Interface_Types_A11_t02: Skip | 30 Language/15_Types/4_Interface_Types_A11_t02: Skip |
| 31 | 31 |
| 32 | 32 |
| 33 LibTest/core/Uri/decodeQueryComponent_A02_t01: fail # co19 Issue 591 | 33 LibTest/core/Uri/decodeQueryComponent_A02_t01: fail # co19 Issue 591 |
| 34 | 34 |
| 35 # co19 issue #380, Strings class has been removed | 35 # co19 issue #380, Strings class has been removed |
| 36 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A04_t01: f
ail, OK | 36 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A04_t01: f
ail, OK |
| 37 | 37 |
| 38 # co19 issue #400, collection library reorg | |
| 39 LibTest/core/String/concat_A01_t01: fail, OK | |
| 40 LibTest/core/String/concat_A02_t01: fail, OK | |
| 41 | |
| 42 # co19 issue #424, Uninitialized finals are warnings not errors | 38 # co19 issue #424, Uninitialized finals are warnings not errors |
| 43 Language/05_Variables/05_Variables_A07_t05: fail, OK | 39 Language/05_Variables/05_Variables_A07_t05: fail, OK |
| 44 Language/05_Variables/05_Variables_A07_t06: fail, OK | 40 Language/05_Variables/05_Variables_A07_t06: fail, OK |
| 45 Language/05_Variables/05_Variables_A07_t07: fail, OK | 41 Language/05_Variables/05_Variables_A07_t07: fail, OK |
| 46 Language/05_Variables/05_Variables_A07_t08: fail, OK | 42 Language/05_Variables/05_Variables_A07_t08: fail, OK |
| 47 Language/05_Variables/05_Variables_A08_t01: fail, OK | 43 Language/05_Variables/05_Variables_A08_t01: fail, OK |
| 48 | 44 |
| 49 # co19 issue #425, Only static fields can be declared as 'const' | 45 # co19 issue #425, Only static fields can be declared as 'const' |
| 50 Language/05_Variables/05_Variables_A12_t01: fail, OK | 46 Language/05_Variables/05_Variables_A12_t01: fail, OK |
| 51 Language/05_Variables/05_Variables_A12_t06: fail, OK | 47 Language/05_Variables/05_Variables_A12_t06: fail, OK |
| 52 Language/05_Variables/05_Variables_A13_t01: fail, OK | 48 Language/05_Variables/05_Variables_A13_t01: fail, OK |
| 53 Language/07_Classes/07_Classes_A02_t11: fail, OK | 49 Language/07_Classes/07_Classes_A02_t11: fail, OK |
| 54 | 50 |
| 55 # co19 issue #442, undefined name "Expect" | 51 # co19 issue #442, undefined name "Expect" |
| 56 Language/15_Types/4_Interface_Types_A08_t03: fail, OK | 52 Language/15_Types/4_Interface_Types_A08_t03: fail, OK |
| 57 | 53 |
| 58 # co19 issue #455, undeclared identifier is static warning | 54 # co19 issue #455, undeclared identifier is static warning |
| 59 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t10:
fail, OK | 55 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t10:
fail, OK |
| 60 Language/13_Statements/04_Local_Function_Declaration_A02_t02: fail, OK | 56 Language/13_Statements/04_Local_Function_Declaration_A02_t02: fail, OK |
| 61 Language/14_Libraries_and_Scripts/1_Imports_A02_t12: fail, OK | 57 Language/14_Libraries_and_Scripts/1_Imports_A02_t12: fail, OK |
| 62 Language/14_Libraries_and_Scripts/1_Imports_A02_t15: fail, OK | 58 Language/14_Libraries_and_Scripts/1_Imports_A02_t15: fail, OK |
| 63 | 59 |
| 64 # co19 issue #513, rules for finals were loosened, contradiction in spec was fix
ed | |
| 65 Language/07_Classes/6_Constructors/1_Generative_Constructors_A21_t01: fail, OK | |
| 66 | |
| 67 # co19 issue #438, Static variables are initialized lazily, need not be constant
s | 60 # co19 issue #438, Static variables are initialized lazily, need not be constant
s |
| 68 Language/12_Expressions/01_Constants_A16_t01: fail, OK | 61 Language/12_Expressions/01_Constants_A16_t01: fail, OK |
| 69 Language/12_Expressions/01_Constants_A16_t02: fail, OK | 62 Language/12_Expressions/01_Constants_A16_t02: fail, OK |
| 70 | 63 |
| 71 # co19 issue #454 (wrongly closed) | 64 # co19 issue #454 (wrongly closed) |
| 72 Language/12_Expressions/12_Instance_Creation/1_New_A01_t04: fail, OK | 65 Language/12_Expressions/12_Instance_Creation/1_New_A01_t04: fail, OK |
| 73 | 66 |
| 74 # co19 issue #528, Const: wrong number of type arguments | 67 # co19 issue #528, Const: wrong number of type arguments |
| 75 Language/12_Expressions/12_Instance_Creation_A01_t02: fail, OK | 68 Language/12_Expressions/12_Instance_Creation_A01_t02: fail, OK |
| 76 Language/12_Expressions/12_Instance_Creation_A01_t05: fail, OK | 69 Language/12_Expressions/12_Instance_Creation_A01_t05: fail, OK |
| (...skipping 19 matching lines...) Expand all Loading... |
| 96 Language/14_Libraries_and_Scripts/1_Imports_A03_t47: fail # co19-roll r546: Plea
se triage this failure | 89 Language/14_Libraries_and_Scripts/1_Imports_A03_t47: fail # co19-roll r546: Plea
se triage this failure |
| 97 Language/14_Libraries_and_Scripts/1_Imports_A03_t67: fail # co19-roll r546: Plea
se triage this failure | 90 Language/14_Libraries_and_Scripts/1_Imports_A03_t67: fail # co19-roll r546: Plea
se triage this failure |
| 98 Language/14_Libraries_and_Scripts/2_Exports_A05_t01: fail # co19-roll r546: Plea
se triage this failure | 91 Language/14_Libraries_and_Scripts/2_Exports_A05_t01: fail # co19-roll r546: Plea
se triage this failure |
| 99 Language/14_Libraries_and_Scripts/5_URIs_A01_t24: fail # co19-roll r546: Please
triage this failure | 92 Language/14_Libraries_and_Scripts/5_URIs_A01_t24: fail # co19-roll r546: Please
triage this failure |
| 100 Language/14_Libraries_and_Scripts/5_URIs_A01_t25: fail # co19-roll r546: Please
triage this failure | 93 Language/14_Libraries_and_Scripts/5_URIs_A01_t25: fail # co19-roll r546: Please
triage this failure |
| 101 Language/15_Types/6_Type_dynamic_A03_t01: fail # co19-roll r546: Please triage t
his failure | 94 Language/15_Types/6_Type_dynamic_A03_t01: fail # co19-roll r546: Please triage t
his failure |
| 102 Language/15_Types/6_Type_dynamic_A04_t01: fail # co19-roll r546: Please triage t
his failure | 95 Language/15_Types/6_Type_dynamic_A04_t01: fail # co19-roll r546: Please triage t
his failure |
| 103 LibTest/async/Future/asStream_A01_t02: pass # co19-roll r546: Please triage this
failure | 96 LibTest/async/Future/asStream_A01_t02: pass # co19-roll r546: Please triage this
failure |
| 104 LibTest/async/Future/asStream_A02_t01: pass # co19-roll r546: Please triage this
failure | 97 LibTest/async/Future/asStream_A02_t01: pass # co19-roll r546: Please triage this
failure |
| 105 LibTest/async/Future/whenComplete_A03_t01: pass # co19-roll r546: Please triage
this failure | 98 LibTest/async/Future/whenComplete_A03_t01: pass # co19-roll r546: Please triage
this failure |
| OLD | NEW |