| 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 # 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 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 type_variable_conflict2_test/10: MissingCompileTimeError | 457 type_variable_conflict2_test/10: MissingCompileTimeError |
| 458 unary_plus_negative_test: CompileTimeError | 458 unary_plus_negative_test: CompileTimeError |
| 459 unbound_getter_test: StaticWarning | 459 unbound_getter_test: StaticWarning |
| 460 unhandled_exception_negative_test: CompileTimeError | 460 unhandled_exception_negative_test: CompileTimeError |
| 461 unresolved_top_level_method_negative_test: CompileTimeError | 461 unresolved_top_level_method_negative_test: CompileTimeError |
| 462 vm/type_cast_vm_test: StaticWarning | 462 vm/type_cast_vm_test: StaticWarning |
| 463 vm/type_vm_test: StaticWarning | 463 vm/type_vm_test: StaticWarning |
| 464 void_type_test: StaticWarning | 464 void_type_test: StaticWarning |
| 465 | 465 |
| 466 | 466 |
| 467 # This section is for tests that intentionally have incompatible behavior in | 467 # Issue 16392. |
| 468 # unchecked and checked mode. -- Issue 16391/16392. | 468 const_constructor2_test/20: MissingStaticWarning # Issue 16392. |
| 469 compile_time_constant_checked2_test/02: MissingCompileTimeError | 469 const_constructor2_test/22: MissingStaticWarning # Issue 16392. |
| 470 compile_time_constant_checked2_test/03: MissingCompileTimeError | 470 const_constructor2_test/24: MissingStaticWarning # Issue 16392. |
| 471 compile_time_constant_checked2_test/04: MissingCompileTimeError | 471 |
| 472 compile_time_constant_checked2_test/06: MissingCompileTimeError | 472 # Issue 16391. The analyzer handle compile-time error in checked only in these |
| 473 compile_time_constant_checked3_test/02: MissingCompileTimeError | 473 # cases: |
| 474 compile_time_constant_checked3_test/03: MissingCompileTimeError | 474 compile_time_constant_checked2_test/01: CompileTimeError # Issue 16391 |
| 475 compile_time_constant_checked3_test/04: MissingCompileTimeError | 475 compile_time_constant_checked2_test/05: CompileTimeError # Issue 16391 |
| 476 compile_time_constant_checked3_test/06: MissingCompileTimeError | 476 compile_time_constant_checked3_test/01: CompileTimeError # Issue 16391 |
| 477 compile_time_constant_checked_test/02: MissingCompileTimeError | 477 compile_time_constant_checked3_test/05: CompileTimeError # Issue 16391 |
| 478 malformed2_test/01: MissingCompileTimeError | 478 list_literal1_test/01: CompileTimeError # Issue 16391 |
| 479 const_constructor2_test/13: MissingCompileTimeError | 479 map_literal1_test/01: CompileTimeError # Issue 16391 |
| 480 const_constructor2_test/14: MissingCompileTimeError | |
| 481 const_constructor2_test/15: MissingCompileTimeError | |
| 482 const_constructor2_test/16: MissingCompileTimeError | |
| 483 const_constructor2_test/17: MissingCompileTimeError | |
| 484 const_constructor2_test/20: MissingCompileTimeError | |
| 485 const_constructor2_test/22: MissingCompileTimeError | |
| 486 const_constructor2_test/24: MissingCompileTimeError | |
| OLD | NEW |