| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |