| 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 6132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6143 Future<CompilationUnit> computeResolvedCompilationUnitAsync(Source source, | 6143 Future<CompilationUnit> computeResolvedCompilationUnitAsync(Source source, |
| 6144 Source librarySource) { | 6144 Source librarySource) { |
| 6145 fail("Unexpected invocation of getResolvedCompilationUnitFuture"); | 6145 fail("Unexpected invocation of getResolvedCompilationUnitFuture"); |
| 6146 return null; | 6146 return null; |
| 6147 } | 6147 } |
| 6148 @override | 6148 @override |
| 6149 void dispose() { | 6149 void dispose() { |
| 6150 fail("Unexpected invocation of dispose"); | 6150 fail("Unexpected invocation of dispose"); |
| 6151 } | 6151 } |
| 6152 @override | 6152 @override |
| 6153 CompilationUnit ensureAnyResolvedDartUnit(Source source) { | 6153 List<CompilationUnit> ensureResolvedDartUnits(Source source) { |
| 6154 fail("Unexpected invocation of ensureAnyResolvedDartUnit"); | 6154 fail("Unexpected invocation of ensureResolvedDartUnits"); |
| 6155 return null; | 6155 return null; |
| 6156 } | 6156 } |
| 6157 @override | 6157 @override |
| 6158 bool exists(Source source) { | 6158 bool exists(Source source) { |
| 6159 fail("Unexpected invocation of exists"); | 6159 fail("Unexpected invocation of exists"); |
| 6160 return false; | 6160 return false; |
| 6161 } | 6161 } |
| 6162 @override | 6162 @override |
| 6163 CompilationUnitElement getCompilationUnitElement(Source unitSource, | 6163 CompilationUnitElement getCompilationUnitElement(Source unitSource, |
| 6164 Source librarySource) { | 6164 Source librarySource) { |
| (...skipping 1042 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7207 bool exists() => true; | 7207 bool exists() => true; |
| 7208 } | 7208 } |
| 7209 | 7209 |
| 7210 | 7210 |
| 7211 class _UniversalCachePartitionTest_test_setMaxCacheSize implements | 7211 class _UniversalCachePartitionTest_test_setMaxCacheSize implements |
| 7212 CacheRetentionPolicy { | 7212 CacheRetentionPolicy { |
| 7213 @override | 7213 @override |
| 7214 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => | 7214 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => |
| 7215 RetentionPriority.LOW; | 7215 RetentionPriority.LOW; |
| 7216 } | 7216 } |
| OLD | NEW |