| 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 5802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5813 void test_flushAstStructures(Source source) { | 5813 void test_flushAstStructures(Source source) { |
| 5814 fail("Unexpected invocation of test_flushAstStructures"); | 5814 fail("Unexpected invocation of test_flushAstStructures"); |
| 5815 } | 5815 } |
| 5816 | 5816 |
| 5817 @override | 5817 @override |
| 5818 bool validateCacheConsistency() { | 5818 bool validateCacheConsistency() { |
| 5819 fail("Unexpected invocation of validateCacheConsistency"); | 5819 fail("Unexpected invocation of validateCacheConsistency"); |
| 5820 return false; | 5820 return false; |
| 5821 } | 5821 } |
| 5822 | 5822 |
| 5823 @deprecated |
| 5823 @override | 5824 @override |
| 5824 void visitCacheItems(void callback(Source source, SourceEntry dartEntry, | 5825 void visitCacheItems(void callback(Source source, SourceEntry dartEntry, |
| 5825 DataDescriptor rowDesc, CacheState state)) { | 5826 DataDescriptor rowDesc, CacheState state)) { |
| 5826 fail("Unexpected invocation of visitCacheItems"); | 5827 fail("Unexpected invocation of visitCacheItems"); |
| 5827 } | 5828 } |
| 5829 |
| 5830 @override |
| 5831 void visitContentCache(ContentCacheVisitor visitor) { |
| 5832 fail("Unexpected invocation of visitContentCache"); |
| 5833 } |
| 5828 } | 5834 } |
| 5829 | 5835 |
| 5830 class TestAnalysisContext_test_applyChanges extends TestAnalysisContext { | 5836 class TestAnalysisContext_test_applyChanges extends TestAnalysisContext { |
| 5831 bool invoked = false; | 5837 bool invoked = false; |
| 5832 TestAnalysisContext_test_applyChanges(); | 5838 TestAnalysisContext_test_applyChanges(); |
| 5833 @override | 5839 @override |
| 5834 void applyChanges(ChangeSet changeSet) { | 5840 void applyChanges(ChangeSet changeSet) { |
| 5835 invoked = true; | 5841 invoked = true; |
| 5836 } | 5842 } |
| 5837 } | 5843 } |
| (...skipping 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6629 @override | 6635 @override |
| 6630 bool exists() => true; | 6636 bool exists() => true; |
| 6631 } | 6637 } |
| 6632 | 6638 |
| 6633 class _UniversalCachePartitionTest_test_setMaxCacheSize | 6639 class _UniversalCachePartitionTest_test_setMaxCacheSize |
| 6634 implements CacheRetentionPolicy { | 6640 implements CacheRetentionPolicy { |
| 6635 @override | 6641 @override |
| 6636 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => | 6642 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => |
| 6637 RetentionPriority.LOW; | 6643 RetentionPriority.LOW; |
| 6638 } | 6644 } |
| OLD | NEW |