Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(634)

Side by Side Diff: pkg/analyzer/test/src/summary/resynthesize_kernel_test.dart

Issue 2981063002: Resynthesize interfaces from Kernel. (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/analyzer/lib/src/dart/element/element.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/dart/element/type.dart'; 9 import 'package:analyzer/dart/element/type.dart';
10 import 'package:analyzer/file_system/file_system.dart'; 10 import 'package:analyzer/file_system/file_system.dart';
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 test_class_implicitField_getterFirst() async { 284 test_class_implicitField_getterFirst() async {
285 await super.test_class_implicitField_getterFirst(); 285 await super.test_class_implicitField_getterFirst();
286 } 286 }
287 287
288 @failingTest 288 @failingTest
289 test_class_implicitField_setterFirst() async { 289 test_class_implicitField_setterFirst() async {
290 await super.test_class_implicitField_setterFirst(); 290 await super.test_class_implicitField_setterFirst();
291 } 291 }
292 292
293 @failingTest 293 @failingTest
294 test_class_interfaces() async {
295 await super.test_class_interfaces();
296 }
297
298 @failingTest
299 test_class_interfaces_unresolved() async {
300 await super.test_class_interfaces_unresolved();
301 }
302
303 @failingTest
304 test_class_method_abstract() async { 294 test_class_method_abstract() async {
305 await super.test_class_method_abstract(); 295 await super.test_class_method_abstract();
306 } 296 }
307 297
308 @failingTest 298 @failingTest
309 test_class_method_external() async { 299 test_class_method_external() async {
310 await super.test_class_method_external(); 300 await super.test_class_method_external();
311 } 301 }
312 302
313 @failingTest 303 @failingTest
(...skipping 2376 matching lines...) Expand 10 before | Expand all | Expand 10 after
2690 LibraryElementImpl getLibrary(String uriStr) { 2680 LibraryElementImpl getLibrary(String uriStr) {
2691 return _libraryMap.putIfAbsent(uriStr, () { 2681 return _libraryMap.putIfAbsent(uriStr, () {
2692 var kernel = _kernelMap[uriStr]; 2682 var kernel = _kernelMap[uriStr];
2693 if (kernel == null) return null; 2683 if (kernel == null) return null;
2694 var libraryContext = 2684 var libraryContext =
2695 new _KernelLibraryResynthesizerContextImpl(this, kernel); 2685 new _KernelLibraryResynthesizerContextImpl(this, kernel);
2696 return new LibraryElementImpl.forKernel(_analysisContext, libraryContext); 2686 return new LibraryElementImpl.forKernel(_analysisContext, libraryContext);
2697 }); 2687 });
2698 } 2688 }
2699 } 2689 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/dart/element/element.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698