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

Side by Side Diff: pkg/analyzer/test/generated/engine_test.dart

Issue 924943010: Minor changes in analyzer to make it easier to extend (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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/pubspec.yaml ('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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 // This code was auto-generated, is not intended to be edited, and is subject to 5 // This code was auto-generated, is not intended to be edited, and is subject to
6 // significant change. Please see the README file for more information. 6 // significant change. Please see the README file for more information.
7 7
8 library engine.engine_test; 8 library engine.engine_test;
9 9
10 import 'dart:async'; 10 import 'dart:async';
(...skipping 6038 matching lines...) Expand 10 before | Expand all | Expand 10 after
6049 @override 6049 @override
6050 AnalysisContextStatistics get statistics { 6050 AnalysisContextStatistics get statistics {
6051 fail("Unexpected invocation of getStatistics"); 6051 fail("Unexpected invocation of getStatistics");
6052 return null; 6052 return null;
6053 } 6053 }
6054 @override 6054 @override
6055 TypeProvider get typeProvider { 6055 TypeProvider get typeProvider {
6056 fail("Unexpected invocation of getTypeProvider"); 6056 fail("Unexpected invocation of getTypeProvider");
6057 return null; 6057 return null;
6058 } 6058 }
6059
6060 @override
6061 TypeResolverVisitorFactory get typeResolverVisitorFactory {
6062 fail("Unexpected invocation of getTypeResolverVisitorFactory");
6063 return null;
6064 }
6065
6066 @override
6067 ResolverVisitorFactory get resolverVisitorFactory {
6068 fail("Unexpected invocation of getResolverVisitorFactory");
6069 return null;
6070 }
6071
6059 @override 6072 @override
6060 void addListener(AnalysisListener listener) { 6073 void addListener(AnalysisListener listener) {
6061 fail("Unexpected invocation of addListener"); 6074 fail("Unexpected invocation of addListener");
6062 } 6075 }
6063 @override 6076 @override
6064 void addSourceInfo(Source source, SourceEntry info) { 6077 void addSourceInfo(Source source, SourceEntry info) {
6065 fail("Unexpected invocation of addSourceInfo"); 6078 fail("Unexpected invocation of addSourceInfo");
6066 } 6079 }
6067 @override 6080 @override
6068 void applyAnalysisDelta(AnalysisDelta delta) { 6081 void applyAnalysisDelta(AnalysisDelta delta) {
(...skipping 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after
7186 bool exists() => true; 7199 bool exists() => true;
7187 } 7200 }
7188 7201
7189 7202
7190 class _UniversalCachePartitionTest_test_setMaxCacheSize implements 7203 class _UniversalCachePartitionTest_test_setMaxCacheSize implements
7191 CacheRetentionPolicy { 7204 CacheRetentionPolicy {
7192 @override 7205 @override
7193 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => 7206 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) =>
7194 RetentionPriority.LOW; 7207 RetentionPriority.LOW;
7195 } 7208 }
OLDNEW
« no previous file with comments | « pkg/analyzer/pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698