| 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 == dartanalyzer ] | 5 [ $compiler == dartanalyzer ] |
| 6 | 6 |
| 7 # not clear: may be assignment in the constructor is warning, not error | 7 # not clear: may be assignment in the constructor is warning, not error |
| 8 Language/05_Variables/05_Variables_A05_t04: fail | 8 Language/05_Variables/05_Variables_A05_t04: fail |
| 9 | 9 |
| 10 # func(final x()) | |
| 11 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t06: fail | |
| 12 | |
| 13 # func(var x()) | |
| 14 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t07: fail | |
| 15 | |
| 16 # void func({var _x}) {} | 10 # void func({var _x}) {} |
| 17 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t03: fail | 11 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t03: fail |
| 18 | 12 |
| 19 # not clear: g([var foo = foo + 10]) is parameter 'foo' in the scope of its own
initialzer? | 13 # not clear: g([var foo = foo + 10]) is parameter 'foo' in the scope of its own
initialzer? |
| 20 Language/06_Functions/2_Formal_Parameters_A02_t02: fail | 14 Language/06_Functions/2_Formal_Parameters_A02_t02: fail |
| 21 | 15 |
| 22 # not clear: null..[1](1)[2](2).foo(3, bar: 4)=5 - it seems that verything befor
e =5 it not assignable | 16 # not clear: null..[1](1)[2](2).foo(3, bar: 4)=5 - it seems that verything befor
e =5 it not assignable |
| 23 Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t15: fail | 17 Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t15: fail |
| 24 | 18 |
| 25 # not initialized final instance variable, should be static warning | 19 # not initialized final instance variable, should be static warning |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 # co19 issue 438, Static variables are initialized lazily, need not be constants | 225 # co19 issue 438, Static variables are initialized lazily, need not be constants |
| 232 Language/11_Expressions/01_Constants_A16_t01: fail, OK | 226 Language/11_Expressions/01_Constants_A16_t01: fail, OK |
| 233 Language/11_Expressions/01_Constants_A16_t02: fail, OK | 227 Language/11_Expressions/01_Constants_A16_t02: fail, OK |
| 234 | 228 |
| 235 # co19 issue 439, it is warning, not error to import two different libraries wit
h the same name | 229 # co19 issue 439, it is warning, not error to import two different libraries wit
h the same name |
| 236 Language/13_Libraries_and_Scripts/1_Imports_A05_t01: fail, OK | 230 Language/13_Libraries_and_Scripts/1_Imports_A05_t01: fail, OK |
| 237 | 231 |
| 238 # co19 issue #440, adj strings is not a string interpolation | 232 # co19 issue #440, adj strings is not a string interpolation |
| 239 Language/13_Libraries_and_Scripts/5_URIs_A01_t24: fail, OK | 233 Language/13_Libraries_and_Scripts/5_URIs_A01_t24: fail, OK |
| 240 Language/13_Libraries_and_Scripts/5_URIs_A01_t25: fail, OK | 234 Language/13_Libraries_and_Scripts/5_URIs_A01_t25: fail, OK |
| OLD | NEW |