| 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 5891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5902 } | 5902 } |
| 5903 @override | 5903 @override |
| 5904 void set analysisOptions(AnalysisOptions options) { | 5904 void set analysisOptions(AnalysisOptions options) { |
| 5905 fail("Unexpected invocation of setAnalysisOptions"); | 5905 fail("Unexpected invocation of setAnalysisOptions"); |
| 5906 } | 5906 } |
| 5907 @override | 5907 @override |
| 5908 void set analysisPriorityOrder(List<Source> sources) { | 5908 void set analysisPriorityOrder(List<Source> sources) { |
| 5909 fail("Unexpected invocation of setAnalysisPriorityOrder"); | 5909 fail("Unexpected invocation of setAnalysisPriorityOrder"); |
| 5910 } | 5910 } |
| 5911 @override | 5911 @override |
| 5912 set contentCache(ContentCache value) { |
| 5913 fail("Unexpected invocation of setContentCache"); |
| 5914 } |
| 5915 @override |
| 5912 DeclaredVariables get declaredVariables { | 5916 DeclaredVariables get declaredVariables { |
| 5913 fail("Unexpected invocation of getDeclaredVariables"); | 5917 fail("Unexpected invocation of getDeclaredVariables"); |
| 5914 return null; | 5918 return null; |
| 5915 } | 5919 } |
| 5916 @override | 5920 @override |
| 5917 List<Source> get htmlSources { | 5921 List<Source> get htmlSources { |
| 5918 fail("Unexpected invocation of getHtmlSources"); | 5922 fail("Unexpected invocation of getHtmlSources"); |
| 5919 return null; | 5923 return null; |
| 5920 } | 5924 } |
| 5921 @override | 5925 @override |
| (...skipping 1160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7082 bool contains(Source source) => source == libB; | 7086 bool contains(Source source) => source == libB; |
| 7083 } | 7087 } |
| 7084 | 7088 |
| 7085 | 7089 |
| 7086 class _UniversalCachePartitionTest_test_setMaxCacheSize implements | 7090 class _UniversalCachePartitionTest_test_setMaxCacheSize implements |
| 7087 CacheRetentionPolicy { | 7091 CacheRetentionPolicy { |
| 7088 @override | 7092 @override |
| 7089 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => | 7093 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => |
| 7090 RetentionPriority.LOW; | 7094 RetentionPriority.LOW; |
| 7091 } | 7095 } |
| OLD | NEW |