Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(844)

Side by Side Diff: pkg/analyzer/test/generated/engine_test.dart

Issue 1211243003: Re-implement the status page for the new task model (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Add missed file Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/analyzer/lib/src/generated/engine.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/engine.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698