| Index: pkg/analysis_server/lib/src/protocol.dart
|
| diff --git a/pkg/analysis_server/lib/src/protocol.dart b/pkg/analysis_server/lib/src/protocol.dart
|
| index e0b19b61d50f758cad1cefb72091c418ff72e444..62841277507b232d2c4e16345b20ccf28886a1d9 100644
|
| --- a/pkg/analysis_server/lib/src/protocol.dart
|
| +++ b/pkg/analysis_server/lib/src/protocol.dart
|
| @@ -418,6 +418,9 @@ RefactoringFeedback _refactoringFeedbackFromJson(JsonDecoder jsonDecoder,
|
| if (kind == RefactoringKind.EXTRACT_METHOD) {
|
| return new ExtractMethodFeedback.fromJson(jsonDecoder, jsonPath, json);
|
| }
|
| + if (kind == RefactoringKind.INLINE_LOCAL_VARIABLE) {
|
| + return new InlineLocalVariableFeedback.fromJson(jsonDecoder, jsonPath, json);
|
| + }
|
| if (kind == RefactoringKind.RENAME) {
|
| return new RenameFeedback.fromJson(jsonDecoder, jsonPath, json);
|
| }
|
|
|