| Index: pkg/analysis_server/lib/src/generated_protocol.dart
|
| diff --git a/pkg/analysis_server/lib/src/generated_protocol.dart b/pkg/analysis_server/lib/src/generated_protocol.dart
|
| index 34fc72c419e5873d3f533b147790604581478cad..f53fa7f404e96860ed210d86fd2e8e3c5e31bae6 100644
|
| --- a/pkg/analysis_server/lib/src/generated_protocol.dart
|
| +++ b/pkg/analysis_server/lib/src/generated_protocol.dart
|
| @@ -8699,6 +8699,19 @@ class SourceChange implements HasToJson {
|
| _addEditToSourceChange(this, file, fileStamp, edit);
|
|
|
| /**
|
| + * Adds [edit] to the [FileEdit] for the given [source].
|
| + */
|
| + void addSourceEdit(engine.AnalysisContext context,
|
| + engine.Source source, SourceEdit edit) =>
|
| + _addSourceEditToSourceChange(this, context, source, edit);
|
| +
|
| + /**
|
| + * Adds [edit] to the [FileEdit] for the given [element].
|
| + */
|
| + void addElementEdit(engine.Element element, SourceEdit edit) =>
|
| + _addElementEditToSourceChange(this, element, edit);
|
| +
|
| + /**
|
| * Adds the given [FileEdit].
|
| */
|
| void addFileEdit(SourceFileEdit edit) {
|
|
|