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 == dart2analyzer ] | 5 [ $compiler == dart2analyzer ] |
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 illegal_invocation_test/01: fail # Issue: 11892 | 10 illegal_invocation_test/01: fail # Issue: 11892 |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 call_through_getter_test: fail | 156 call_through_getter_test: fail |
157 | 157 |
158 # test issue 11584, positional arguments cannot be used for named parameters | 158 # test issue 11584, positional arguments cannot be used for named parameters |
159 compile_time_constant_e_test: fail | 159 compile_time_constant_e_test: fail |
160 | 160 |
161 # test issue 11585, static warning, not negative test | 161 # test issue 11585, static warning, not negative test |
162 constructor3_negative_test: fail | 162 constructor3_negative_test: fail |
163 constructor_call_wrong_argument_count_negative_test: fail | 163 constructor_call_wrong_argument_count_negative_test: fail |
164 instance_call_wrong_argument_count_negative_test: fail | 164 instance_call_wrong_argument_count_negative_test: fail |
165 | 165 |
166 # test issue 11586, Class(args) is compile-time warning, not error | |
167 constructor_negative_test: fail | |
168 | |
169 # test issue 11589, export D from 2 export directives | 166 # test issue 11589, export D from 2 export directives |
170 export_cyclic_test: fail | 167 export_cyclic_test: fail |
171 | 168 |
172 # test issue 11590, runtime only negative test | 169 # test issue 11590, runtime only negative test |
173 field_method4_negative_test: fail | 170 field_method4_negative_test: fail |
174 | 171 |
175 # test issue 11591, assigning to the final variable is warning, not error | 172 # test issue 11591, assigning to the final variable is warning, not error |
176 getter_no_setter_test/01: fail | 173 getter_no_setter_test/01: fail |
177 | 174 |
178 # test issue 11592, Function type alias (typedef) is not a constant | 175 # test issue 11592, Function type alias (typedef) is not a constant |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 factory_redirection_test/09: fail | 261 factory_redirection_test/09: fail |
265 factory_redirection_test/10: fail | 262 factory_redirection_test/10: fail |
266 factory_redirection_test/11: fail | 263 factory_redirection_test/11: fail |
267 factory_redirection_test/12: fail | 264 factory_redirection_test/12: fail |
268 factory_redirection_test/13: fail | 265 factory_redirection_test/13: fail |
269 factory_redirection_test/14: fail | 266 factory_redirection_test/14: fail |
270 getters_setters2_test/03: fail | 267 getters_setters2_test/03: fail |
271 type_variable_bounds3_test/00: fail | 268 type_variable_bounds3_test/00: fail |
272 type_variable_bounds2_test/05: fail | 269 type_variable_bounds2_test/05: fail |
273 | 270 |
OLD | NEW |