Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 library analyzer.test.src.summary.summarize_ast_test; | |
|
scheglov
2016/03/29 23:48:00
Do we want to add this library to the test_all.dar
| |
| 6 | |
| 7 import 'package:unittest/unittest.dart'; | |
| 8 | |
| 9 import '../../reflective_tests.dart'; | |
| 10 import 'summarize_ast_test.dart'; | |
| 11 | |
| 12 main() { | |
| 13 groupSep = ' | '; | |
| 14 runReflectiveTests(LinkedSummarizeAstStrongTest); | |
| 15 } | |
| 16 | |
| 17 /** | |
| 18 * Override of [LinkedSummarizeAstTest] which uses strong mode. | |
| 19 */ | |
| 20 @reflectiveTest | |
| 21 class LinkedSummarizeAstStrongTest extends LinkedSummarizeAstTest { | |
| 22 @override | |
| 23 bool get strongMode => true; | |
| 24 | |
| 25 @override | |
| 26 test_bottom_reference_shared() { | |
| 27 // TODO(paulberry): fix. | |
| 28 } | |
| 29 | |
| 30 @override | |
| 31 test_closure_executable_with_imported_return_type() { | |
| 32 // TODO(paulberry): fix. | |
| 33 } | |
| 34 | |
| 35 @override | |
| 36 test_closure_executable_with_return_type_from_closure() { | |
| 37 // TODO(paulberry): fix. | |
| 38 } | |
| 39 | |
| 40 @override | |
| 41 test_closure_executable_with_unimported_return_type() { | |
| 42 // TODO(paulberry): fix. | |
| 43 } | |
| 44 | |
| 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() { | |
| 57 // TODO(paulberry): fix. | |
| 58 } | |
| 59 | |
| 60 @override | |
| 61 test_field_inferred_type_nonstatic_implicit_uninitialized() { | |
| 62 // TODO(paulberry): fix. | |
| 63 } | |
| 64 | |
| 65 @override | |
| 66 test_field_inferred_type_static_implicit_initialized() { | |
| 67 // TODO(paulberry): fix. | |
| 68 } | |
| 69 | |
| 70 @override | |
| 71 test_field_propagated_type_final_immediate() { | |
| 72 // TODO(paulberry): fix. | |
| 73 } | |
| 74 | |
| 75 @override | |
| 76 test_fully_linked_references_follow_other_references() { | |
| 77 // TODO(paulberry): fix. | |
| 78 } | |
| 79 | |
| 80 @override | |
| 81 test_getter_inferred_type_nonstatic_implicit_return() { | |
| 82 // TODO(paulberry): fix. | |
| 83 } | |
| 84 | |
| 85 @override | |
| 86 test_implicit_dependencies_follow_other_dependencies() { | |
| 87 // TODO(paulberry): fix. | |
| 88 } | |
| 89 | |
| 90 @override | |
| 91 test_inferred_type_refers_to_bound_type_param() { | |
| 92 // TODO(paulberry): fix. | |
| 93 } | |
| 94 | |
| 95 @override | |
| 96 test_inferred_type_refers_to_function_typed_parameter_type_generic_class() { | |
| 97 // TODO(paulberry): fix. | |
| 98 } | |
| 99 | |
| 100 @override | |
| 101 test_inferred_type_refers_to_function_typed_parameter_type_other_lib() { | |
| 102 // TODO(paulberry): fix. | |
| 103 } | |
| 104 | |
| 105 @override | |
| 106 test_inferred_type_refers_to_method_function_typed_parameter_type() { | |
| 107 // TODO(paulberry): fix. | |
| 108 } | |
| 109 | |
| 110 @override | |
| 111 test_inferred_type_refers_to_setter_function_typed_parameter_type() { | |
| 112 // TODO(paulberry): fix. | |
| 113 } | |
| 114 | |
| 115 @override | |
| 116 test_initializer_executable_with_bottom_return_type() { | |
| 117 // TODO(paulberry): fix. | |
| 118 } | |
| 119 | |
| 120 @override | |
| 121 test_initializer_executable_with_imported_return_type() { | |
| 122 // TODO(paulberry): fix. | |
| 123 } | |
| 124 | |
| 125 @override | |
| 126 test_initializer_executable_with_return_type_from_closure() { | |
| 127 // TODO(paulberry): fix. | |
| 128 } | |
| 129 | |
| 130 @override | |
| 131 test_initializer_executable_with_return_type_from_closure_field() { | |
| 132 // TODO(paulberry): fix. | |
| 133 } | |
| 134 | |
| 135 @override | |
| 136 test_initializer_executable_with_return_type_from_closure_local() { | |
| 137 // TODO(paulberry): fix. | |
| 138 } | |
| 139 | |
| 140 @override | |
| 141 test_initializer_executable_with_unimported_return_type() { | |
| 142 // TODO(paulberry): fix. | |
| 143 } | |
| 144 | |
| 145 @override | |
| 146 test_linked_reference_reuse() { | |
| 147 // TODO(paulberry): fix. | |
| 148 } | |
| 149 | |
| 150 @override | |
| 151 test_linked_type_dependency_reuse() { | |
| 152 // TODO(paulberry): fix. | |
| 153 } | |
| 154 | |
| 155 @override | |
| 156 test_method_inferred_type_nonstatic_implicit_param() { | |
| 157 // TODO(paulberry): fix. | |
| 158 } | |
| 159 | |
| 160 @override | |
| 161 test_method_inferred_type_nonstatic_implicit_return() { | |
| 162 // TODO(paulberry): fix. | |
| 163 } | |
| 164 | |
| 165 @override | |
| 166 test_setter_inferred_type_nonstatic_implicit_param() { | |
| 167 // TODO(paulberry): fix. | |
| 168 } | |
| 169 | |
| 170 @override | |
| 171 test_setter_inferred_type_nonstatic_implicit_return() { | |
| 172 // TODO(paulberry): fix. | |
| 173 } | |
| 174 | |
| 175 @override | |
| 176 test_syntheticFunctionType_genericClosure() { | |
| 177 // TODO(paulberry): fix. | |
| 178 } | |
| 179 | |
| 180 @override | |
| 181 test_syntheticFunctionType_genericClosure_inGenericFunction() { | |
| 182 // TODO(paulberry): fix. | |
| 183 } | |
| 184 | |
| 185 @override | |
| 186 test_syntheticFunctionType_inGenericClass() { | |
| 187 // TODO(paulberry): fix. | |
| 188 } | |
| 189 | |
| 190 @override | |
| 191 test_syntheticFunctionType_inGenericFunction() { | |
| 192 // TODO(paulberry): fix. | |
| 193 } | |
| 194 | |
| 195 @override | |
| 196 test_syntheticFunctionType_noArguments() { | |
| 197 // TODO(paulberry): fix. | |
| 198 } | |
| 199 | |
| 200 @override | |
| 201 test_syntheticFunctionType_withArguments() { | |
| 202 // TODO(paulberry): fix. | |
| 203 } | |
| 204 | |
| 205 @override | |
| 206 test_variable_inferred_type_implicit_initialized() { | |
| 207 // TODO(paulberry): fix. | |
| 208 } | |
| 209 | |
| 210 @override | |
| 211 test_variable_propagated_type_final_immediate() { | |
| 212 // TODO(paulberry): fix. | |
| 213 } | |
| 214 | |
| 215 @override | |
| 216 test_variable_propagated_type_new_reference() { | |
| 217 // TODO(paulberry): fix. | |
| 218 } | |
| 219 | |
| 220 @override | |
| 221 test_variable_propagated_type_omit_dynamic() { | |
| 222 // TODO(paulberry): fix. | |
| 223 } | |
| 224 } | |
| OLD | NEW |