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

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

Issue 2297343002: Flush results when contexts are made idle. (Closed)
Patch Set: Un-fail completion tests. Created 4 years, 3 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/task/dart.dart ('k') | pkg/analyzer/test/src/context/cache_test.dart » ('j') | 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 library analyzer.test.generated.engine_test; 5 library analyzer.test.generated.engine_test;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'package:analyzer/dart/ast/ast.dart'; 9 import 'package:analyzer/dart/ast/ast.dart';
10 import 'package:analyzer/dart/element/element.dart'; 10 import 'package:analyzer/dart/element/element.dart';
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 fail("Unexpected invocation of getHtmlSources"); 270 fail("Unexpected invocation of getHtmlSources");
271 return null; 271 return null;
272 } 272 }
273 273
274 @override 274 @override
275 Stream<ImplicitAnalysisEvent> get implicitAnalysisEvents { 275 Stream<ImplicitAnalysisEvent> get implicitAnalysisEvents {
276 fail("Unexpected invocation of analyzedSources"); 276 fail("Unexpected invocation of analyzedSources");
277 return null; 277 return null;
278 } 278 }
279 279
280 bool get isActive {
281 fail("Unexpected invocation of isActive");
282 return false;
283 }
284
285 void set isActive(bool isActive) {
286 fail("Unexpected invocation of isActive");
287 }
288
280 @override 289 @override
281 bool get isDisposed { 290 bool get isDisposed {
282 fail("Unexpected invocation of isDisposed"); 291 fail("Unexpected invocation of isDisposed");
283 return false; 292 return false;
284 } 293 }
285 294
286 @override 295 @override
287 List<Source> get launchableClientLibrarySources { 296 List<Source> get launchableClientLibrarySources {
288 fail("Unexpected invocation of getLaunchableClientLibrarySources"); 297 fail("Unexpected invocation of getLaunchableClientLibrarySources");
289 return null; 298 return null;
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 @override 714 @override
706 void test_flushAstStructures(Source source) { 715 void test_flushAstStructures(Source source) {
707 fail("Unexpected invocation of test_flushAstStructures"); 716 fail("Unexpected invocation of test_flushAstStructures");
708 } 717 }
709 718
710 @override 719 @override
711 void visitContentCache(ContentCacheVisitor visitor) { 720 void visitContentCache(ContentCacheVisitor visitor) {
712 fail("Unexpected invocation of visitContentCache"); 721 fail("Unexpected invocation of visitContentCache");
713 } 722 }
714 } 723 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/task/dart.dart ('k') | pkg/analyzer/test/src/context/cache_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698