| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 library analyzer.test.src.summary.summarize_ast_test; | 5 library analyzer.test.src.summary.summarize_ast_test; |
| 6 | 6 |
| 7 import 'package:unittest/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
| 8 | 8 |
| 9 import '../../reflective_tests.dart'; | 9 import '../../reflective_tests.dart'; |
| 10 import 'summarize_ast_test.dart'; | 10 import 'summarize_ast_test.dart'; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 test_closure_executable_with_return_type_from_closure() { | 36 test_closure_executable_with_return_type_from_closure() { |
| 37 // TODO(paulberry): fix. | 37 // TODO(paulberry): fix. |
| 38 } | 38 } |
| 39 | 39 |
| 40 @override | 40 @override |
| 41 test_closure_executable_with_unimported_return_type() { | 41 test_closure_executable_with_unimported_return_type() { |
| 42 // TODO(paulberry): fix. | 42 // TODO(paulberry): fix. |
| 43 } | 43 } |
| 44 | 44 |
| 45 @override | 45 @override |
| 46 test_field_formal_param_inferred_type_explicit() { | |
| 47 // TODO(paulberry): fix. | |
| 48 } | |
| 49 | |
| 50 @override | |
| 51 test_field_formal_param_inferred_type_implicit() { | |
| 52 // TODO(paulberry): fix. | |
| 53 } | |
| 54 | |
| 55 @override | |
| 56 test_field_inferred_type_nonstatic_implicit_initialized() { | 46 test_field_inferred_type_nonstatic_implicit_initialized() { |
| 57 // TODO(paulberry): fix. | 47 // TODO(paulberry): fix. |
| 58 } | 48 } |
| 59 | 49 |
| 60 @override | 50 @override |
| 61 test_field_inferred_type_static_implicit_initialized() { | 51 test_field_inferred_type_static_implicit_initialized() { |
| 62 // TODO(paulberry): fix. | 52 // TODO(paulberry): fix. |
| 63 } | 53 } |
| 64 | 54 |
| 65 @override | 55 @override |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 @override | 150 @override |
| 161 test_variable_propagated_type_new_reference() { | 151 test_variable_propagated_type_new_reference() { |
| 162 // TODO(paulberry): fix. | 152 // TODO(paulberry): fix. |
| 163 } | 153 } |
| 164 | 154 |
| 165 @override | 155 @override |
| 166 test_variable_propagated_type_omit_dynamic() { | 156 test_variable_propagated_type_omit_dynamic() { |
| 167 // TODO(paulberry): fix. | 157 // TODO(paulberry): fix. |
| 168 } | 158 } |
| 169 } | 159 } |
| OLD | NEW |