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

Side by Side Diff: pkg/analysis_server/lib/src/provisional/edit/utilities/change_builder_dart.dart

Issue 1468133002: Make change builder provisional API (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years 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
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 analysis_server.plugin.edit.utilities.change_builder_dart; 5 library analysis_server.plugin.edit.utilities.change_builder_dart;
6 6
7 import 'package:analysis_server/plugin/edit/utilities/change_builder_core.dart'; 7 import 'package:analysis_server/src/provisional/edit/utilities/change_builder_co re.dart';
8 import 'package:analysis_server/src/utilities/change_builder_dart.dart'; 8 import 'package:analysis_server/src/utilities/change_builder_dart.dart';
9 import 'package:analyzer/src/generated/ast.dart'; 9 import 'package:analyzer/src/generated/ast.dart';
10 import 'package:analyzer/src/generated/element.dart'; 10 import 'package:analyzer/src/generated/element.dart';
11 import 'package:analyzer/src/generated/engine.dart'; 11 import 'package:analyzer/src/generated/engine.dart';
12 12
13 /** 13 /**
14 * A [ChangeBuilder] used to build changes in Dart files. 14 * A [ChangeBuilder] used to build changes in Dart files.
15 * 15 *
16 * Clients may not extend, implement or mix-in this class. 16 * Clients may not extend, implement or mix-in this class.
17 */ 17 */
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 String groupName, 147 String groupName,
148 bool required: false}); 148 bool required: false});
149 } 149 }
150 150
151 /** 151 /**
152 * A [FileEditBuilder] used to build edits for Dart files. 152 * A [FileEditBuilder] used to build edits for Dart files.
153 * 153 *
154 * Clients may not extend, implement or mix-in this class. 154 * Clients may not extend, implement or mix-in this class.
155 */ 155 */
156 abstract class DartFileEditBuilder extends FileEditBuilder {} 156 abstract class DartFileEditBuilder extends FileEditBuilder {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698