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 enum_syntax_test/02: Fail # 21649 | 10 enum_syntax_test/02: Fail # 21649 |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 method_override_test: StaticWarning | 288 method_override_test: StaticWarning |
289 mixin_illegal_static_access_test: StaticWarning | 289 mixin_illegal_static_access_test: StaticWarning |
290 mixin_illegal_syntax_test/13: CompileTimeError | 290 mixin_illegal_syntax_test/13: CompileTimeError |
291 mixin_type_parameters_mixin_extends_test: StaticWarning | 291 mixin_type_parameters_mixin_extends_test: StaticWarning |
292 mixin_type_parameters_mixin_test: StaticWarning | 292 mixin_type_parameters_mixin_test: StaticWarning |
293 mixin_type_parameters_super_extends_test: StaticWarning | 293 mixin_type_parameters_super_extends_test: StaticWarning |
294 mixin_type_parameters_super_test: StaticWarning | 294 mixin_type_parameters_super_test: StaticWarning |
295 mixin_with_two_implicit_constructors_test: StaticWarning | 295 mixin_with_two_implicit_constructors_test: StaticWarning |
296 mixin_invalid_bound_test/none: StaticWarning # legitimate StaticWarning, cannot
be annotated | 296 mixin_invalid_bound_test/none: StaticWarning # legitimate StaticWarning, cannot
be annotated |
297 mixin_invalid_bound2_test/none: StaticWarning # legitimate StaticWarning, cannot
be annotated | 297 mixin_invalid_bound2_test/none: StaticWarning # legitimate StaticWarning, cannot
be annotated |
| 298 mixin_super_bound_test: StaticWarning # legitimate StaticWarning, cannot be anno
tated |
| 299 mixin_super_bound2_test: CompileTimeError # Issue 23772 |
| 300 mixin_super_test: CompileTimeError # Issue 23772 |
298 named_constructor_test/01: StaticWarning | 301 named_constructor_test/01: StaticWarning |
299 named_constructor_test/03: StaticWarning | 302 named_constructor_test/03: StaticWarning |
300 named_parameters2_test: StaticWarning | 303 named_parameters2_test: StaticWarning |
301 named_parameters3_test: StaticWarning | 304 named_parameters3_test: StaticWarning |
302 named_parameters4_test: StaticWarning | 305 named_parameters4_test: StaticWarning |
303 named_parameters_test/01: StaticWarning | 306 named_parameters_test/01: StaticWarning |
304 named_parameters_test/02: StaticWarning | 307 named_parameters_test/02: StaticWarning |
305 named_parameters_test/03: StaticWarning | 308 named_parameters_test/03: StaticWarning |
306 named_parameters_test/04: StaticWarning | 309 named_parameters_test/04: StaticWarning |
307 named_parameters_test/05: StaticWarning | 310 named_parameters_test/05: StaticWarning |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 # This test is expected to have warnings because of noSuchMethod overriding. | 462 # This test is expected to have warnings because of noSuchMethod overriding. |
460 regress_12561_test: StaticWarning | 463 regress_12561_test: StaticWarning |
461 | 464 |
462 main_not_a_function_test/01: Fail # Issue 20030 | 465 main_not_a_function_test/01: Fail # Issue 20030 |
463 main_test/03: Fail # Issue 20030 | 466 main_test/03: Fail # Issue 20030 |
464 no_main_test/01: Fail # Issue 20030 | 467 no_main_test/01: Fail # Issue 20030 |
465 | 468 |
466 # This test is expected to generate a warning, since it's | 469 # This test is expected to generate a warning, since it's |
467 # intentionally referring to a variable that's not in scope. | 470 # intentionally referring to a variable that's not in scope. |
468 transitive_private_library_access_test: StaticWarning | 471 transitive_private_library_access_test: StaticWarning |
OLD | NEW |