| 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 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 ResolverVisitorFactory get resolverVisitorFactory => | 553 ResolverVisitorFactory get resolverVisitorFactory => |
| 554 baseContext.resolverVisitorFactory; | 554 baseContext.resolverVisitorFactory; |
| 555 | 555 |
| 556 SourceFactory get sourceFactory => baseContext.sourceFactory; | 556 SourceFactory get sourceFactory => baseContext.sourceFactory; |
| 557 | 557 |
| 558 void set sourceFactory(SourceFactory factory) { | 558 void set sourceFactory(SourceFactory factory) { |
| 559 baseContext.sourceFactory = factory; | 559 baseContext.sourceFactory = factory; |
| 560 } | 560 } |
| 561 | 561 |
| 562 @override | 562 @override |
| 563 List<Source> get sources => baseContext.sources; |
| 564 |
| 565 @override |
| 563 AnalysisContextStatistics get statistics => baseContext.statistics; | 566 AnalysisContextStatistics get statistics => baseContext.statistics; |
| 564 | 567 |
| 565 @override | 568 @override |
| 566 TypeProvider get typeProvider => baseContext.typeProvider; | 569 TypeProvider get typeProvider => baseContext.typeProvider; |
| 567 | 570 |
| 568 @override | 571 @override |
| 569 TypeResolverVisitorFactory get typeResolverVisitorFactory => | 572 TypeResolverVisitorFactory get typeResolverVisitorFactory => |
| 570 baseContext.typeResolverVisitorFactory; | 573 baseContext.typeResolverVisitorFactory; |
| 571 | 574 |
| 572 @override | 575 @override |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 829 void setContents(Source source, String contents) { | 832 void setContents(Source source, String contents) { |
| 830 baseContext.setContents(source, contents); | 833 baseContext.setContents(source, contents); |
| 831 } | 834 } |
| 832 | 835 |
| 833 @override | 836 @override |
| 834 void visitCacheItems(void callback(Source source, SourceEntry dartEntry, | 837 void visitCacheItems(void callback(Source source, SourceEntry dartEntry, |
| 835 DataDescriptor rowDesc, CacheState state)) { | 838 DataDescriptor rowDesc, CacheState state)) { |
| 836 baseContext.visitCacheItems(callback); | 839 baseContext.visitCacheItems(callback); |
| 837 } | 840 } |
| 838 } | 841 } |
| OLD | NEW |