| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 set contentCache(ContentCache value) { | 227 set contentCache(ContentCache value) { |
| 228 fail("Unexpected invocation of setContentCache"); | 228 fail("Unexpected invocation of setContentCache"); |
| 229 } | 229 } |
| 230 | 230 |
| 231 @override | 231 @override |
| 232 DeclaredVariables get declaredVariables { | 232 DeclaredVariables get declaredVariables { |
| 233 fail("Unexpected invocation of getDeclaredVariables"); | 233 fail("Unexpected invocation of getDeclaredVariables"); |
| 234 return null; | 234 return null; |
| 235 } | 235 } |
| 236 | 236 |
| 237 @deprecated |
| 237 @override | 238 @override |
| 238 EmbedderYamlLocator get embedderYamlLocator { | 239 EmbedderYamlLocator get embedderYamlLocator { |
| 239 fail("Unexpected invocation of get embedderYamlLocator"); | 240 fail("Unexpected invocation of get embedderYamlLocator"); |
| 240 return null; | 241 return null; |
| 241 } | 242 } |
| 242 | 243 |
| 243 @override | 244 @override |
| 244 List<AnalysisTarget> get explicitTargets { | 245 List<AnalysisTarget> get explicitTargets { |
| 245 fail("Unexpected invocation of visitCacheItems"); | 246 fail("Unexpected invocation of visitCacheItems"); |
| 246 return null; | 247 return null; |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 bool validateCacheConsistency() { | 693 bool validateCacheConsistency() { |
| 693 fail("Unexpected invocation of validateCacheConsistency"); | 694 fail("Unexpected invocation of validateCacheConsistency"); |
| 694 return false; | 695 return false; |
| 695 } | 696 } |
| 696 | 697 |
| 697 @override | 698 @override |
| 698 void visitContentCache(ContentCacheVisitor visitor) { | 699 void visitContentCache(ContentCacheVisitor visitor) { |
| 699 fail("Unexpected invocation of visitContentCache"); | 700 fail("Unexpected invocation of visitContentCache"); |
| 700 } | 701 } |
| 701 } | 702 } |
| OLD | NEW |