| 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 library services.src.refactoring; | |
| 6 | |
| 7 import 'dart:async'; | |
| 8 | |
| 9 import 'package:analysis_services/correction/status.dart'; | |
| 10 import 'package:analysis_services/refactoring/refactoring.dart'; | |
| 11 | |
| 12 | |
| 13 /** | |
| 14 * Abstract implementation of [Refactoring]. | |
| 15 */ | |
| 16 abstract class RefactoringImpl implements Refactoring { | |
| 17 final List<String> potentialEditIds = <String>[]; | |
| 18 | |
| 19 @override | |
| 20 Future<RefactoringStatus> checkAllConditions() { | |
| 21 RefactoringStatus result = new RefactoringStatus(); | |
| 22 return checkInitialConditions().then((status) { | |
| 23 result.addStatus(status); | |
| 24 if (result.hasFatalError) { | |
| 25 return result; | |
| 26 } | |
| 27 return checkFinalConditions().then((status) { | |
| 28 result.addStatus(status); | |
| 29 return result; | |
| 30 }); | |
| 31 }); | |
| 32 } | |
| 33 } | |
| OLD | NEW |