| 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 5476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5487 List<Source> get prioritySources { | 5487 List<Source> get prioritySources { |
| 5488 fail("Unexpected invocation of getPrioritySources"); | 5488 fail("Unexpected invocation of getPrioritySources"); |
| 5489 return null; | 5489 return null; |
| 5490 } | 5490 } |
| 5491 @override | 5491 @override |
| 5492 List<Source> get refactoringUnsafeSources { | 5492 List<Source> get refactoringUnsafeSources { |
| 5493 fail("Unexpected invocation of getRefactoringUnsafeSources"); | 5493 fail("Unexpected invocation of getRefactoringUnsafeSources"); |
| 5494 return null; | 5494 return null; |
| 5495 } | 5495 } |
| 5496 @override | 5496 @override |
| 5497 LibraryResolverFactory get libraryResolverFactory { |
| 5498 fail("Unexpected invocation of getLibraryResolverFactory"); |
| 5499 return null; |
| 5500 } |
| 5501 @override |
| 5497 ResolverVisitorFactory get resolverVisitorFactory { | 5502 ResolverVisitorFactory get resolverVisitorFactory { |
| 5498 fail("Unexpected invocation of getResolverVisitorFactory"); | 5503 fail("Unexpected invocation of getResolverVisitorFactory"); |
| 5499 return null; | 5504 return null; |
| 5500 } | 5505 } |
| 5501 @override | 5506 @override |
| 5502 SourceFactory get sourceFactory { | 5507 SourceFactory get sourceFactory { |
| 5503 fail("Unexpected invocation of getSourceFactory"); | 5508 fail("Unexpected invocation of getSourceFactory"); |
| 5504 return null; | 5509 return null; |
| 5505 } | 5510 } |
| 5506 | 5511 |
| (...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6606 @override | 6611 @override |
| 6607 bool exists() => true; | 6612 bool exists() => true; |
| 6608 } | 6613 } |
| 6609 | 6614 |
| 6610 class _UniversalCachePartitionTest_test_setMaxCacheSize | 6615 class _UniversalCachePartitionTest_test_setMaxCacheSize |
| 6611 implements CacheRetentionPolicy { | 6616 implements CacheRetentionPolicy { |
| 6612 @override | 6617 @override |
| 6613 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => | 6618 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => |
| 6614 RetentionPriority.LOW; | 6619 RetentionPriority.LOW; |
| 6615 } | 6620 } |
| OLD | NEW |