| OLD | NEW |
| 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 5472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5483 @override | 5483 @override |
| 5484 Stream<SourcesChangedEvent> get onSourcesChanged { | 5484 Stream<SourcesChangedEvent> get onSourcesChanged { |
| 5485 fail("Unexpected invocation of onSourcesChanged"); | 5485 fail("Unexpected invocation of onSourcesChanged"); |
| 5486 return null; | 5486 return null; |
| 5487 } | 5487 } |
| 5488 @override | 5488 @override |
| 5489 List<Source> get prioritySources { | 5489 List<Source> get prioritySources { |
| 5490 fail("Unexpected invocation of getPrioritySources"); | 5490 fail("Unexpected invocation of getPrioritySources"); |
| 5491 return null; | 5491 return null; |
| 5492 } | 5492 } |
| 5493 | |
| 5494 @override | 5493 @override |
| 5495 List<AnalysisTarget> get priorityTargets { | 5494 List<AnalysisTarget> get priorityTargets { |
| 5496 fail("Unexpected invocation of visitCacheItems"); | 5495 fail("Unexpected invocation of visitCacheItems"); |
| 5497 return null; | 5496 return null; |
| 5498 } | 5497 } |
| 5499 | 5498 |
| 5500 @override | 5499 @override |
| 5500 CachePartition get privateAnalysisCachePartition { |
| 5501 fail("Unexpected invocation of privateAnalysisCachePartition"); |
| 5502 return null; |
| 5503 } |
| 5504 |
| 5505 @override |
| 5501 ResolverVisitorFactory get resolverVisitorFactory { | 5506 ResolverVisitorFactory get resolverVisitorFactory { |
| 5502 fail("Unexpected invocation of getResolverVisitorFactory"); | 5507 fail("Unexpected invocation of getResolverVisitorFactory"); |
| 5503 return null; | 5508 return null; |
| 5504 } | 5509 } |
| 5505 | 5510 |
| 5506 @override | 5511 @override |
| 5507 SourceFactory get sourceFactory { | 5512 SourceFactory get sourceFactory { |
| 5508 fail("Unexpected invocation of getSourceFactory"); | 5513 fail("Unexpected invocation of getSourceFactory"); |
| 5509 return null; | 5514 return null; |
| 5510 } | 5515 } |
| (...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6607 @override | 6612 @override |
| 6608 bool exists() => true; | 6613 bool exists() => true; |
| 6609 } | 6614 } |
| 6610 | 6615 |
| 6611 class _UniversalCachePartitionTest_test_setMaxCacheSize | 6616 class _UniversalCachePartitionTest_test_setMaxCacheSize |
| 6612 implements CacheRetentionPolicy { | 6617 implements CacheRetentionPolicy { |
| 6613 @override | 6618 @override |
| 6614 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => | 6619 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => |
| 6615 RetentionPriority.LOW; | 6620 RetentionPriority.LOW; |
| 6616 } | 6621 } |
| OLD | NEW |