| 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 5710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5721 fail("Unexpected invocation of getSourcesWithFullName"); | 5721 fail("Unexpected invocation of getSourcesWithFullName"); |
| 5722 return null; | 5722 return null; |
| 5723 } | 5723 } |
| 5724 @override | 5724 @override |
| 5725 bool handleContentsChanged( | 5725 bool handleContentsChanged( |
| 5726 Source source, String originalContents, String newContents, bool notify) { | 5726 Source source, String originalContents, String newContents, bool notify) { |
| 5727 fail("Unexpected invocation of handleContentsChanged"); | 5727 fail("Unexpected invocation of handleContentsChanged"); |
| 5728 return false; | 5728 return false; |
| 5729 } | 5729 } |
| 5730 @override | 5730 @override |
| 5731 void invalidateLibraryHints(Source librarySource) { |
| 5732 fail("Unexpected invocation of invalidateLibraryHints"); |
| 5733 } |
| 5734 @override |
| 5731 bool isClientLibrary(Source librarySource) { | 5735 bool isClientLibrary(Source librarySource) { |
| 5732 fail("Unexpected invocation of isClientLibrary"); | 5736 fail("Unexpected invocation of isClientLibrary"); |
| 5733 return false; | 5737 return false; |
| 5734 } | 5738 } |
| 5735 @override | 5739 @override |
| 5736 bool isServerLibrary(Source librarySource) { | 5740 bool isServerLibrary(Source librarySource) { |
| 5737 fail("Unexpected invocation of isServerLibrary"); | 5741 fail("Unexpected invocation of isServerLibrary"); |
| 5738 return false; | 5742 return false; |
| 5739 } | 5743 } |
| 5740 @override | 5744 @override |
| (...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6598 @override | 6602 @override |
| 6599 bool exists() => true; | 6603 bool exists() => true; |
| 6600 } | 6604 } |
| 6601 | 6605 |
| 6602 class _UniversalCachePartitionTest_test_setMaxCacheSize | 6606 class _UniversalCachePartitionTest_test_setMaxCacheSize |
| 6603 implements CacheRetentionPolicy { | 6607 implements CacheRetentionPolicy { |
| 6604 @override | 6608 @override |
| 6605 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => | 6609 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => |
| 6606 RetentionPriority.LOW; | 6610 RetentionPriority.LOW; |
| 6607 } | 6611 } |
| OLD | NEW |