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

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

Issue 2132073003: Validate cache consistency asynchronously. Compute modification times of physical files in a separa… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 fail("Unexpected invocation of shouldErrorsBeAnalyzed"); 695 fail("Unexpected invocation of shouldErrorsBeAnalyzed");
696 return false; 696 return false;
697 } 697 }
698 698
699 @override 699 @override
700 void test_flushAstStructures(Source source) { 700 void test_flushAstStructures(Source source) {
701 fail("Unexpected invocation of test_flushAstStructures"); 701 fail("Unexpected invocation of test_flushAstStructures");
702 } 702 }
703 703
704 @override 704 @override
705 bool validateCacheConsistency() {
706 fail("Unexpected invocation of validateCacheConsistency");
707 return false;
708 }
709
710 @override
711 void visitContentCache(ContentCacheVisitor visitor) { 705 void visitContentCache(ContentCacheVisitor visitor) {
712 fail("Unexpected invocation of visitContentCache"); 706 fail("Unexpected invocation of visitContentCache");
713 } 707 }
708
709 @override
710 CacheConsistencyValidator get cacheConsistencyValidator {
711 fail("Unexpected invocation of cacheConsistencyValidator");
712 return null;
713 }
714 } 714 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698