OLD | NEW |
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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.resynthesize_kernel_test; | 5 library analyzer.test.src.summary.resynthesize_kernel_test; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import 'package:analyzer/file_system/file_system.dart'; | 9 import 'package:analyzer/file_system/file_system.dart'; |
10 import 'package:analyzer/file_system/memory_file_system.dart'; | 10 import 'package:analyzer/file_system/memory_file_system.dart'; |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 test_class_constructor_implicit_type_params() async { | 223 test_class_constructor_implicit_type_params() async { |
224 await super.test_class_constructor_implicit_type_params(); | 224 await super.test_class_constructor_implicit_type_params(); |
225 } | 225 } |
226 | 226 |
227 @failingTest | 227 @failingTest |
228 test_class_constructor_params() async { | 228 test_class_constructor_params() async { |
229 await super.test_class_constructor_params(); | 229 await super.test_class_constructor_params(); |
230 } | 230 } |
231 | 231 |
232 @failingTest | 232 @failingTest |
233 test_class_documented() async { | |
234 await super.test_class_documented(); | |
235 } | |
236 | |
237 @failingTest | |
238 test_class_documented_tripleSlash() async { | 233 test_class_documented_tripleSlash() async { |
239 await super.test_class_documented_tripleSlash(); | 234 await super.test_class_documented_tripleSlash(); |
240 } | 235 } |
241 | 236 |
242 @failingTest | 237 @failingTest |
243 test_class_documented_with_references() async { | 238 test_class_documented_withLeadingNotDocumentation() async { |
244 await super.test_class_documented_with_references(); | 239 await super.test_class_documented_withLeadingNotDocumentation(); |
245 } | 240 } |
246 | 241 |
247 @failingTest | 242 @failingTest |
248 test_class_documented_with_windows_line_endings() async { | |
249 await super.test_class_documented_with_windows_line_endings(); | |
250 } | |
251 | |
252 @failingTest | |
253 test_class_field_const() async { | 243 test_class_field_const() async { |
254 await super.test_class_field_const(); | 244 await super.test_class_field_const(); |
255 } | 245 } |
256 | 246 |
257 @failingTest | 247 @failingTest |
258 test_class_field_implicit_type() async { | 248 test_class_field_implicit_type() async { |
259 await super.test_class_field_implicit_type(); | 249 await super.test_class_field_implicit_type(); |
260 } | 250 } |
261 | 251 |
262 @failingTest | 252 @failingTest |
(...skipping 2405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2668 class _KernelLibraryResynthesizerContextImpl | 2658 class _KernelLibraryResynthesizerContextImpl |
2669 implements KernelLibraryResynthesizerContext { | 2659 implements KernelLibraryResynthesizerContext { |
2670 /// TODO(scheglov) we don't use this yet, make it private later | 2660 /// TODO(scheglov) we don't use this yet, make it private later |
2671 final Map<String, kernel.Library> libraryMap; | 2661 final Map<String, kernel.Library> libraryMap; |
2672 | 2662 |
2673 @override | 2663 @override |
2674 final kernel.Library library; | 2664 final kernel.Library library; |
2675 | 2665 |
2676 _KernelLibraryResynthesizerContextImpl(this.libraryMap, this.library); | 2666 _KernelLibraryResynthesizerContextImpl(this.libraryMap, this.library); |
2677 } | 2667 } |
OLD | NEW |