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