Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: pkg/analysis_services/lib/src/refactoring/refactoring.dart

Issue 458063002: Initial work on refactorings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes for review comments Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698