| Index: pkg/analysis_server/tool/spec/codegen_java_types.dart
|
| diff --git a/pkg/analysis_server/tool/spec/codegen_java_types.dart b/pkg/analysis_server/tool/spec/codegen_java_types.dart
|
| index 906adda8ffcc67559b53681fbd73edbb9809b353..423545eff01eb828d867210eb303bdf66440a3aa 100644
|
| --- a/pkg/analysis_server/tool/spec/codegen_java_types.dart
|
| +++ b/pkg/analysis_server/tool/spec/codegen_java_types.dart
|
| @@ -616,7 +616,9 @@ final GeneratedDirectory targetDir = new GeneratedDirectory(pathToGenTypes, () {
|
| TypeDecl type = impliedType.type;
|
| String typeNameInSpec = capitalize(impliedType.camelName);
|
| bool isRefactoringOption = impliedType.kind == 'refactoringOptions';
|
| - if (impliedType.kind == 'typeDefinition' || isRefactoringOption) {
|
| + if (impliedType.kind == 'typeDefinition' ||
|
| + impliedType.kind == 'refactoringFeedback' ||
|
| + isRefactoringOption) {
|
| TypeDecl type = impliedType.type;
|
| if (type is TypeObject || type is TypeEnum) {
|
| // This is for situations such as 'Override' where the name in the spec
|
|
|