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

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

Issue 1113423003: Remove AnalysisContext.refactoringUnsafeSources. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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/src/context/context_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 List<Source> get librarySources => baseContext.librarySources; 567 List<Source> get librarySources => baseContext.librarySources;
568 568
569 @override 569 @override
570 Stream<SourcesChangedEvent> get onSourcesChanged => 570 Stream<SourcesChangedEvent> get onSourcesChanged =>
571 baseContext.onSourcesChanged; 571 baseContext.onSourcesChanged;
572 572
573 @override 573 @override
574 List<Source> get prioritySources => baseContext.prioritySources; 574 List<Source> get prioritySources => baseContext.prioritySources;
575 575
576 @override 576 @override
577 List<Source> get refactoringUnsafeSources =>
578 baseContext.refactoringUnsafeSources;
579
580 @override
581 ResolverVisitorFactory get resolverVisitorFactory => 577 ResolverVisitorFactory get resolverVisitorFactory =>
582 baseContext.resolverVisitorFactory; 578 baseContext.resolverVisitorFactory;
583 579
584 SourceFactory get sourceFactory => baseContext.sourceFactory; 580 SourceFactory get sourceFactory => baseContext.sourceFactory;
585 581
586 void set sourceFactory(SourceFactory factory) { 582 void set sourceFactory(SourceFactory factory) {
587 baseContext.sourceFactory = factory; 583 baseContext.sourceFactory = factory;
588 } 584 }
589 585
590 @override 586 @override
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 void setContents(Source source, String contents) { 861 void setContents(Source source, String contents) {
866 baseContext.setContents(source, contents); 862 baseContext.setContents(source, contents);
867 } 863 }
868 864
869 @override 865 @override
870 void visitCacheItems(void callback(Source source, SourceEntry dartEntry, 866 void visitCacheItems(void callback(Source source, SourceEntry dartEntry,
871 DataDescriptor rowDesc, CacheState state)) { 867 DataDescriptor rowDesc, CacheState state)) {
872 baseContext.visitCacheItems(callback); 868 baseContext.visitCacheItems(callback);
873 } 869 }
874 } 870 }
OLDNEW
« no previous file with comments | « pkg/analyzer/test/src/context/context_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698