| 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:collection'; | 10 import 'dart:collection'; |
| (...skipping 5582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5593 } | 5593 } |
| 5594 @override | 5594 @override |
| 5595 void setChangedContents(Source source, String contents, int offset, | 5595 void setChangedContents(Source source, String contents, int offset, |
| 5596 int oldLength, int newLength) { | 5596 int oldLength, int newLength) { |
| 5597 fail("Unexpected invocation of setChangedContents"); | 5597 fail("Unexpected invocation of setChangedContents"); |
| 5598 } | 5598 } |
| 5599 @override | 5599 @override |
| 5600 void setContents(Source source, String contents) { | 5600 void setContents(Source source, String contents) { |
| 5601 fail("Unexpected invocation of setContents"); | 5601 fail("Unexpected invocation of setContents"); |
| 5602 } | 5602 } |
| 5603 @override |
| 5604 void visitCacheItems(void callback(Source source, SourceEntry dartEntry, |
| 5605 DataDescriptor rowDesc, |
| 5606 CacheState state)) { |
| 5607 fail("Unexpected invocation of visitCacheItems"); |
| 5608 } |
| 5603 } | 5609 } |
| 5604 | 5610 |
| 5605 | 5611 |
| 5606 class TestAnalysisContext_test_addSourceInfo extends TestAnalysisContext { | 5612 class TestAnalysisContext_test_addSourceInfo extends TestAnalysisContext { |
| 5607 bool invoked = false; | 5613 bool invoked = false; |
| 5608 TestAnalysisContext_test_addSourceInfo(); | 5614 TestAnalysisContext_test_addSourceInfo(); |
| 5609 @override | 5615 @override |
| 5610 void addSourceInfo(Source source, SourceEntry info) { | 5616 void addSourceInfo(Source source, SourceEntry info) { |
| 5611 invoked = true; | 5617 invoked = true; |
| 5612 } | 5618 } |
| (...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6496 } | 6502 } |
| 6497 } | 6503 } |
| 6498 | 6504 |
| 6499 | 6505 |
| 6500 class _UniversalCachePartitionTest_test_setMaxCacheSize implements | 6506 class _UniversalCachePartitionTest_test_setMaxCacheSize implements |
| 6501 CacheRetentionPolicy { | 6507 CacheRetentionPolicy { |
| 6502 @override | 6508 @override |
| 6503 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => | 6509 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => |
| 6504 RetentionPriority.LOW; | 6510 RetentionPriority.LOW; |
| 6505 } | 6511 } |
| OLD | NEW |