| 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 == dartanalyzer ] | 5 [ $compiler == dartanalyzer ] |
| 6 | 6 |
| 7 # Runtime negative test. No static errors or warnings. | 7 # Runtime negative test. No static errors or warnings. |
| 8 closure_call_wrong_argument_count_negative_test: skip | 8 closure_call_wrong_argument_count_negative_test: skip |
| 9 | 9 |
| 10 # TBD: using built-in identifers | 10 # TBD: using built-in identifers |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 # test issue 11586, Class(args) is compile-time warning, not error | 147 # test issue 11586, Class(args) is compile-time warning, not error |
| 148 constructor_negative_test: fail | 148 constructor_negative_test: fail |
| 149 | 149 |
| 150 # test issue 11589, export D from 2 export directives | 150 # test issue 11589, export D from 2 export directives |
| 151 export_cyclic_test: fail | 151 export_cyclic_test: fail |
| 152 | 152 |
| 153 # test issue 11590, runtime only negative test | 153 # test issue 11590, runtime only negative test |
| 154 field_method4_negative_test: fail | 154 field_method4_negative_test: fail |
| 155 | 155 |
| 156 # test issue 11591, assigning to the final variable is warning, not error | 156 # test issue 11591, assigning to the final variable is warning, not error |
| 157 final_for_in_variable_test/01: fail | |
| 158 final_param_negative_test: fail | |
| 159 getter_no_setter_test/01: fail | 157 getter_no_setter_test/01: fail |
| 160 | 158 |
| 161 # test issue 11592, Function type alias (typedef) is not a constant | 159 # test issue 11592, Function type alias (typedef) is not a constant |
| 162 first_class_types_constants_test: fail | 160 first_class_types_constants_test: fail |
| 163 | 161 |
| 164 # test issue 11594, Reference to a not resolve identifier is static warning | 162 # test issue 11594, Reference to a not resolve identifier is static warning |
| 165 import_combinators_negative_test: fail | 163 import_combinators_negative_test: fail |
| 166 interface_static_non_final_fields_negative_test: fail | 164 interface_static_non_final_fields_negative_test: fail |
| 167 | 165 |
| 168 # test issue 11595, It is static warning to create instance (new) of the malform
ed type | 166 # test issue 11595, It is static warning to create instance (new) of the malform
ed type |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 type_variable_bounds2_test/04: fail | 218 type_variable_bounds2_test/04: fail |
| 221 type_variable_bounds2_test/06: fail | 219 type_variable_bounds2_test/06: fail |
| 222 | 220 |
| 223 # test issue 12163, unresolved identifier is static warning in static context | 221 # test issue 12163, unresolved identifier is static warning in static context |
| 224 unresolved_in_factory_negative_test: fail | 222 unresolved_in_factory_negative_test: fail |
| 225 unresolved_top_level_var_negative_test: fail | 223 unresolved_top_level_var_negative_test: fail |
| 226 | 224 |
| 227 # test issue 12181, uses argument definition test | 225 # test issue 12181, uses argument definition test |
| 228 constructor_initializer_test: fail | 226 constructor_initializer_test: fail |
| 229 | 227 |
| 230 # test issue 12184, It is static warning, not error, to assign to a constant var
iable. | |
| 231 static_final_field2_negative_test: fail | |
| 232 | |
| 233 # test issue 12191, ambiguous import is always warning now | 228 # test issue 12191, ambiguous import is always warning now |
| 234 prefix3_negative_test: fail | 229 prefix3_negative_test: fail |
| 235 library_ambiguous_test/00: fail | 230 library_ambiguous_test/00: fail |
| 236 library_ambiguous_test/01: fail | 231 library_ambiguous_test/01: fail |
| 237 library_ambiguous_test/02: fail | 232 library_ambiguous_test/02: fail |
| 238 library_ambiguous_test/03: fail | 233 library_ambiguous_test/03: fail |
| 239 | 234 |
| 240 # test issue 12289, assignment in assert statement | 235 # test issue 12289, assignment in assert statement |
| 241 type_error_test: fail | 236 type_error_test: fail |
| 242 | 237 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 267 factory_redirection_test/09: fail | 262 factory_redirection_test/09: fail |
| 268 factory_redirection_test/10: fail | 263 factory_redirection_test/10: fail |
| 269 factory_redirection_test/11: fail | 264 factory_redirection_test/11: fail |
| 270 factory_redirection_test/12: fail | 265 factory_redirection_test/12: fail |
| 271 factory_redirection_test/13: fail | 266 factory_redirection_test/13: fail |
| 272 factory_redirection_test/14: fail | 267 factory_redirection_test/14: fail |
| 273 getters_setters2_test/03: fail | 268 getters_setters2_test/03: fail |
| 274 type_variable_bounds3_test/00: fail | 269 type_variable_bounds3_test/00: fail |
| 275 type_variable_bounds2_test/05: fail | 270 type_variable_bounds2_test/05: fail |
| 276 | 271 |
| OLD | NEW |