| 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 # Runtime negative test. No static errors or warnings. | 6 # Runtime negative test. No static errors or warnings. |
| 7 closure_call_wrong_argument_count_negative_test: skip | 7 closure_call_wrong_argument_count_negative_test: skip |
| 8 | 8 |
| 9 # Test issue 12694 (was analyzer issue), (1) when "abstract" is import prefix us
ing it as type is warning; (2) currently analyzer resolves prefix as field (don'
t ask) | 9 # Test issue 12694 (was analyzer issue), (1) when "abstract" is import prefix us
ing it as type is warning; (2) currently analyzer resolves prefix as field (don'
t ask) |
| 10 built_in_identifier_prefix_test: CompileTimeError # Issue 12694 | 10 built_in_identifier_prefix_test: CompileTimeError # Issue 12694 |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 private_member3_negative_test: fail | 142 private_member3_negative_test: fail |
| 143 | 143 |
| 144 # test issue 14079 | 144 # test issue 14079 |
| 145 malformed_test/none: fail # test issue 14079, legit warnings for malformed type | 145 malformed_test/none: fail # test issue 14079, legit warnings for malformed type |
| 146 malformed_test/05: fail # test issue 14079, it is not error, but warning to inst
antiate malformed type | 146 malformed_test/05: fail # test issue 14079, it is not error, but warning to inst
antiate malformed type |
| 147 malformed_test/06: fail # test issue 14079, it is not error, but warning to use
malformed type in "try-on" clause | 147 malformed_test/06: fail # test issue 14079, it is not error, but warning to use
malformed type in "try-on" clause |
| 148 | 148 |
| 149 # test issue 14228 | 149 # test issue 14228 |
| 150 black_listed_test/none: fail # test issue 14228, warnings are required but not e
xpected | 150 black_listed_test/none: fail # test issue 14228, warnings are required but not e
xpected |
| 151 | 151 |
| 152 # test issue 14363, "if ((a is B))" has the same effect as "if (a is B)", so no
static warning expected | |
| 153 type_promotion_parameter_test/53: Fail | |
| 154 | |
| 155 # test issue 14410, "typedef C = " is now really illegal syntax | 152 # test issue 14410, "typedef C = " is now really illegal syntax |
| 156 mixin_illegal_syntax_test/none: fail | 153 mixin_illegal_syntax_test/none: fail |
| 157 | 154 |
| 158 # test issue 14736, It is a static warning if a class C declares an instance met
hod named n and has a setter named n=. | 155 # test issue 14736, It is a static warning if a class C declares an instance met
hod named n and has a setter named n=. |
| 159 setter4_test: StaticWarning | 156 setter4_test: StaticWarning |
| 160 | 157 |
| 161 # test issue 15060 | 158 # test issue 15060 |
| 162 least_upper_bound_test/23: StaticWarning # Issue 15060 | 159 least_upper_bound_test/23: StaticWarning # Issue 15060 |
| 163 least_upper_bound_test/24: StaticWarning # Issue 15060 | 160 least_upper_bound_test/24: StaticWarning # Issue 15060 |
| 164 least_upper_bound_test/25: MissingStaticWarning # Issue 15060 | 161 least_upper_bound_test/25: MissingStaticWarning # Issue 15060 |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 type_variable_identifier_expression_test: StaticWarning | 451 type_variable_identifier_expression_test: StaticWarning |
| 455 type_variable_scope2_test: StaticWarning | 452 type_variable_scope2_test: StaticWarning |
| 456 unary_plus_negative_test: CompileTimeError | 453 unary_plus_negative_test: CompileTimeError |
| 457 unbound_getter_test: StaticWarning | 454 unbound_getter_test: StaticWarning |
| 458 unhandled_exception_negative_test: CompileTimeError | 455 unhandled_exception_negative_test: CompileTimeError |
| 459 unresolved_top_level_method_negative_test: CompileTimeError | 456 unresolved_top_level_method_negative_test: CompileTimeError |
| 460 vm/type_cast_vm_test: StaticWarning | 457 vm/type_cast_vm_test: StaticWarning |
| 461 vm/type_vm_test: StaticWarning | 458 vm/type_vm_test: StaticWarning |
| 462 void_type_test: StaticWarning | 459 void_type_test: StaticWarning |
| 463 | 460 |
| OLD | NEW |