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

Side by Side Diff: pkg/analyzer/test/src/task/driver_test.dart

Issue 1067903002: Changes in analyzer needed for dev_compiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fixes analyzer errors in tests (implement added API)" Created 5 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « pkg/analyzer/test/generated/engine_test.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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 test.src.task.driver_test; 5 library test.src.task.driver_test;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:collection'; 8 import 'dart:collection';
9 9
10 import 'package:analyzer/src/cancelable_future.dart'; 10 import 'package:analyzer/src/cancelable_future.dart';
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 baseContext.onSourcesChanged; 567 baseContext.onSourcesChanged;
568 568
569 @override 569 @override
570 List<Source> get prioritySources => baseContext.prioritySources; 570 List<Source> get prioritySources => baseContext.prioritySources;
571 571
572 @override 572 @override
573 List<Source> get refactoringUnsafeSources => 573 List<Source> get refactoringUnsafeSources =>
574 baseContext.refactoringUnsafeSources; 574 baseContext.refactoringUnsafeSources;
575 575
576 @override 576 @override
577 LibraryResolverFactory get libraryResolverFactory =>
578 baseContext.libraryResolverFactory;
579
580 @override
577 ResolverVisitorFactory get resolverVisitorFactory => 581 ResolverVisitorFactory get resolverVisitorFactory =>
578 baseContext.resolverVisitorFactory; 582 baseContext.resolverVisitorFactory;
579 583
580 SourceFactory get sourceFactory => baseContext.sourceFactory; 584 SourceFactory get sourceFactory => baseContext.sourceFactory;
581 585
582 void set sourceFactory(SourceFactory factory) { 586 void set sourceFactory(SourceFactory factory) {
583 baseContext.sourceFactory = factory; 587 baseContext.sourceFactory = factory;
584 } 588 }
585 589
586 @override 590 @override
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 void setContents(Source source, String contents) { 865 void setContents(Source source, String contents) {
862 baseContext.setContents(source, contents); 866 baseContext.setContents(source, contents);
863 } 867 }
864 868
865 @override 869 @override
866 void visitCacheItems(void callback(Source source, SourceEntry dartEntry, 870 void visitCacheItems(void callback(Source source, SourceEntry dartEntry,
867 DataDescriptor rowDesc, CacheState state)) { 871 DataDescriptor rowDesc, CacheState state)) {
868 baseContext.visitCacheItems(callback); 872 baseContext.visitCacheItems(callback);
869 } 873 }
870 } 874 }
OLDNEW
« no previous file with comments | « pkg/analyzer/test/generated/engine_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698