| 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 void addListener(AnalysisListener listener) { | 395 void addListener(AnalysisListener listener) { |
| 396 fail("Unexpected invocation of addListener"); | 396 fail("Unexpected invocation of addListener"); |
| 397 } | 397 } |
| 398 | 398 |
| 399 @override | 399 @override |
| 400 void applyAnalysisDelta(AnalysisDelta delta) { | 400 void applyAnalysisDelta(AnalysisDelta delta) { |
| 401 fail("Unexpected invocation of applyAnalysisDelta"); | 401 fail("Unexpected invocation of applyAnalysisDelta"); |
| 402 } | 402 } |
| 403 | 403 |
| 404 @override | 404 @override |
| 405 ApplyChangesStatus applyChanges(ChangeSet changeSet) { | 405 void applyChanges(ChangeSet changeSet) { |
| 406 fail("Unexpected invocation of applyChanges"); | 406 fail("Unexpected invocation of applyChanges"); |
| 407 return null; | 407 return null; |
| 408 } | 408 } |
| 409 | 409 |
| 410 @override | 410 @override |
| 411 String computeDocumentationComment(Element element) { | 411 String computeDocumentationComment(Element element) { |
| 412 fail("Unexpected invocation of computeDocumentationComment"); | 412 fail("Unexpected invocation of computeDocumentationComment"); |
| 413 return null; | 413 return null; |
| 414 } | 414 } |
| 415 | 415 |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 714 @override | 714 @override |
| 715 void test_flushAstStructures(Source source) { | 715 void test_flushAstStructures(Source source) { |
| 716 fail("Unexpected invocation of test_flushAstStructures"); | 716 fail("Unexpected invocation of test_flushAstStructures"); |
| 717 } | 717 } |
| 718 | 718 |
| 719 @override | 719 @override |
| 720 void visitContentCache(ContentCacheVisitor visitor) { | 720 void visitContentCache(ContentCacheVisitor visitor) { |
| 721 fail("Unexpected invocation of visitContentCache"); | 721 fail("Unexpected invocation of visitContentCache"); |
| 722 } | 722 } |
| 723 } | 723 } |
| OLD | NEW |