| 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 62841277507b232d2c4e16345b20ccf28886a1d9..fbb33a17f190c99febba036ef1e83eaac69ae818 100644
|
| --- a/pkg/analysis_server/lib/src/protocol.dart
|
| +++ b/pkg/analysis_server/lib/src/protocol.dart
|
| @@ -421,6 +421,9 @@ RefactoringFeedback _refactoringFeedbackFromJson(JsonDecoder jsonDecoder,
|
| if (kind == RefactoringKind.INLINE_LOCAL_VARIABLE) {
|
| return new InlineLocalVariableFeedback.fromJson(jsonDecoder, jsonPath, json);
|
| }
|
| + if (kind == RefactoringKind.INLINE_METHOD) {
|
| + return new InlineMethodFeedback.fromJson(jsonDecoder, jsonPath, json);
|
| + }
|
| if (kind == RefactoringKind.RENAME) {
|
| return new RenameFeedback.fromJson(jsonDecoder, jsonPath, json);
|
| }
|
|
|