| 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 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 return false; | 599 return false; |
| 600 } | 600 } |
| 601 | 601 |
| 602 @override | 602 @override |
| 603 Stream<ComputedResult> onResultComputed(ResultDescriptor descriptor) { | 603 Stream<ComputedResult> onResultComputed(ResultDescriptor descriptor) { |
| 604 fail("Unexpected invocation of onResultComputed"); | 604 fail("Unexpected invocation of onResultComputed"); |
| 605 return null; | 605 return null; |
| 606 } | 606 } |
| 607 | 607 |
| 608 @override | 608 @override |
| 609 Stream<InvalidatedResult> onResultInvalidated(ResultDescriptor descriptor) { |
| 610 fail("Unexpected invocation of onResultInvalidated"); |
| 611 return null; |
| 612 } |
| 613 |
| 614 @override |
| 609 CompilationUnit parseCompilationUnit(Source source) { | 615 CompilationUnit parseCompilationUnit(Source source) { |
| 610 fail("Unexpected invocation of parseCompilationUnit"); | 616 fail("Unexpected invocation of parseCompilationUnit"); |
| 611 return null; | 617 return null; |
| 612 } | 618 } |
| 613 | 619 |
| 614 @override | 620 @override |
| 615 Document parseHtmlDocument(Source source) { | 621 Document parseHtmlDocument(Source source) { |
| 616 fail("Unexpected invocation of parseHtmlDocument"); | 622 fail("Unexpected invocation of parseHtmlDocument"); |
| 617 return null; | 623 return null; |
| 618 } | 624 } |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 bool validateCacheConsistency() { | 684 bool validateCacheConsistency() { |
| 679 fail("Unexpected invocation of validateCacheConsistency"); | 685 fail("Unexpected invocation of validateCacheConsistency"); |
| 680 return false; | 686 return false; |
| 681 } | 687 } |
| 682 | 688 |
| 683 @override | 689 @override |
| 684 void visitContentCache(ContentCacheVisitor visitor) { | 690 void visitContentCache(ContentCacheVisitor visitor) { |
| 685 fail("Unexpected invocation of visitContentCache"); | 691 fail("Unexpected invocation of visitContentCache"); |
| 686 } | 692 } |
| 687 } | 693 } |
| OLD | NEW |