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 deep_nesting1_negative_test: Crash # Issue 25558 | 10 deep_nesting1_negative_test: Crash # Issue 25558 |
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
502 for_in_side_effects_test: StaticWarning, OK # Test uses custom class that does n
ot implement Iterable in for-in. | 502 for_in_side_effects_test: StaticWarning, OK # Test uses custom class that does n
ot implement Iterable in for-in. |
503 | 503 |
504 # Experimental feature: Syntactic support for generic methods. | 504 # Experimental feature: Syntactic support for generic methods. |
505 generic_functions_test: CompileTimeError # Issue 25868 | 505 generic_functions_test: CompileTimeError # Issue 25868 |
506 generic_local_functions_test: CompileTimeError # Issue 25868 | 506 generic_local_functions_test: CompileTimeError # Issue 25868 |
507 generic_methods_test: CompileTimeError # Issue 25868 | 507 generic_methods_test: CompileTimeError # Issue 25868 |
508 generic_sends_test: CompileTimeError # Issue 25868 | 508 generic_sends_test: CompileTimeError # Issue 25868 |
509 generic_methods_new_test: CompiletimeError # Issue 25868 | 509 generic_methods_new_test: CompiletimeError # Issue 25868 |
510 generic_methods_function_type_test: CompiletimeError # Issue 25868 | 510 generic_methods_function_type_test: CompiletimeError # Issue 25868 |
511 generic_methods_type_expression_test: CompiletimeError # Issue 25868 | 511 generic_methods_type_expression_test: CompiletimeError # Issue 25868 |
512 | |
513 # Experimental feature: Use initializing formals in initializers and constructor
body. | |
514 initializing_formal_access_test: CompiletimeError # TODO(eernst): Create a suita
ble sdk issue. | |
OLD | NEW |