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

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

Issue 1008443002: Cherry-pick r44373, r44378, and r44275. (Closed) Base URL: https://dart.googlecode.com/svn/trunk/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/lib/src/generated/engine.dart ('k') | pkg/analyzer/test/src/task/driver_test.dart » ('j') | 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 5461 matching lines...) Expand 10 before | Expand all | Expand 10 after
5472 fail("Unexpected invocation of getSourceFactory"); 5472 fail("Unexpected invocation of getSourceFactory");
5473 return null; 5473 return null;
5474 } 5474 }
5475 5475
5476 @override 5476 @override
5477 void set sourceFactory(SourceFactory factory) { 5477 void set sourceFactory(SourceFactory factory) {
5478 fail("Unexpected invocation of setSourceFactory"); 5478 fail("Unexpected invocation of setSourceFactory");
5479 } 5479 }
5480 5480
5481 @override 5481 @override
5482 List<Source> get sources {
5483 fail("Unexpected invocation of sources");
5484 return null;
5485 }
5486
5487 @override
5482 AnalysisContextStatistics get statistics { 5488 AnalysisContextStatistics get statistics {
5483 fail("Unexpected invocation of getStatistics"); 5489 fail("Unexpected invocation of getStatistics");
5484 return null; 5490 return null;
5485 } 5491 }
5486
5487 @override 5492 @override
5488 TypeProvider get typeProvider { 5493 TypeProvider get typeProvider {
5489 fail("Unexpected invocation of getTypeProvider"); 5494 fail("Unexpected invocation of getTypeProvider");
5490 return null; 5495 return null;
5491 } 5496 }
5492 @override 5497 @override
5493 TypeResolverVisitorFactory get typeResolverVisitorFactory { 5498 TypeResolverVisitorFactory get typeResolverVisitorFactory {
5494 fail("Unexpected invocation of getTypeResolverVisitorFactory"); 5499 fail("Unexpected invocation of getTypeResolverVisitorFactory");
5495 return null; 5500 return null;
5496 } 5501 }
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
5727 @override 5732 @override
5728 ht.HtmlUnit resolveHtmlUnit(Source htmlSource) { 5733 ht.HtmlUnit resolveHtmlUnit(Source htmlSource) {
5729 fail("Unexpected invocation of resolveHtmlUnit"); 5734 fail("Unexpected invocation of resolveHtmlUnit");
5730 return null; 5735 return null;
5731 } 5736 }
5732 @override 5737 @override
5733 void setChangedContents(Source source, String contents, int offset, 5738 void setChangedContents(Source source, String contents, int offset,
5734 int oldLength, int newLength) { 5739 int oldLength, int newLength) {
5735 fail("Unexpected invocation of setChangedContents"); 5740 fail("Unexpected invocation of setChangedContents");
5736 } 5741 }
5742
5737 @override 5743 @override
5738 void setContents(Source source, String contents) { 5744 void setContents(Source source, String contents) {
5739 fail("Unexpected invocation of setContents"); 5745 fail("Unexpected invocation of setContents");
5740 } 5746 }
5741 5747
5742 @override 5748 @override
5743 void visitCacheItems(void callback(Source source, SourceEntry dartEntry, 5749 void visitCacheItems(void callback(Source source, SourceEntry dartEntry,
5744 DataDescriptor rowDesc, CacheState state)) { 5750 DataDescriptor rowDesc, CacheState state)) {
5745 fail("Unexpected invocation of visitCacheItems"); 5751 fail("Unexpected invocation of visitCacheItems");
5746 } 5752 }
(...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after
6564 @override 6570 @override
6565 bool exists() => true; 6571 bool exists() => true;
6566 } 6572 }
6567 6573
6568 class _UniversalCachePartitionTest_test_setMaxCacheSize 6574 class _UniversalCachePartitionTest_test_setMaxCacheSize
6569 implements CacheRetentionPolicy { 6575 implements CacheRetentionPolicy {
6570 @override 6576 @override
6571 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => 6577 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) =>
6572 RetentionPriority.LOW; 6578 RetentionPriority.LOW;
6573 } 6579 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/engine.dart ('k') | pkg/analyzer/test/src/task/driver_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698