| 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 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 Loading... |
| 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 } |
| OLD | NEW |