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

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

Issue 980073007: Add missing overrides to AnalysisContext-derived classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 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 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
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