| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // This code was auto-generated, is not intended to be edited, and is subject to |
| 6 // significant change. Please see the README file for more information. |
| 7 |
| 8 library services.src.refactoring; |
| 9 |
| 10 import 'package:analysis_services/correction/status.dart'; |
| 11 import 'package:analysis_services/refactoring/refactoring.dart'; |
| 12 |
| 13 |
| 14 /** |
| 15 * Abstract implementation of {@link Refactoring}. |
| 16 */ |
| 17 abstract class RefactoringImpl implements Refactoring { |
| 18 @override |
| 19 RefactoringStatus checkAllConditions() { |
| 20 RefactoringStatus result = new RefactoringStatus(); |
| 21 result.addStatus(checkInitialConditions()); |
| 22 if (!result.hasFatalError) { |
| 23 result.addStatus(checkFinalConditions()); |
| 24 } |
| 25 return result; |
| 26 } |
| 27 } |
| OLD | NEW |