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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 } |
OLD | NEW |