@@ -55,6 +55,7 @@ object JavaConverters {
55
55
" comment" -> ent.comment.map(_.asJava).asJava,
56
56
" superTypes" -> ent.superTypes,
57
57
" hasVisibleMembers" -> ent.hasVisibleMembers,
58
+ " hasShortenedDocstring" -> ent.hasShortenedDocstring,
58
59
" signature" -> ent.signature
59
60
) ++ extras).asJava
60
61
}
@@ -74,6 +75,7 @@ object JavaConverters {
74
75
" isPrivate" -> ent.isPrivate,
75
76
" isProtected" -> ent.isProtected,
76
77
" hasVisibleMembers" -> ent.hasVisibleMembers,
78
+ " hasShortenedDocstring" -> ent.hasShortenedDocstring,
77
79
" hasCompanion" -> ent.hasCompanion,
78
80
" companionPath" -> ent.companionPath.asJava,
79
81
" signature" -> ent.signature
@@ -95,6 +97,7 @@ object JavaConverters {
95
97
" isPrivate" -> ent.isPrivate,
96
98
" isProtected" -> ent.isProtected,
97
99
" hasVisibleMembers" -> ent.hasVisibleMembers,
100
+ " hasShortenedDocstring" -> ent.hasShortenedDocstring,
98
101
" hasCompanion" -> ent.hasCompanion,
99
102
" companionPath" -> ent.companionPath.asJava,
100
103
" signature" -> ent.signature
@@ -115,6 +118,7 @@ object JavaConverters {
115
118
" isPrivate" -> ent.isPrivate,
116
119
" isProtected" -> ent.isProtected,
117
120
" hasVisibleMembers" -> ent.hasVisibleMembers,
121
+ " hasShortenedDocstring" -> ent.hasShortenedDocstring,
118
122
" hasCompanion" -> ent.hasCompanion,
119
123
" companionPath" -> ent.companionPath.asJava,
120
124
" signature" -> ent.signature
@@ -134,6 +138,7 @@ object JavaConverters {
134
138
" isPrivate" -> ent.isPrivate,
135
139
" isProtected" -> ent.isProtected,
136
140
" hasVisibleMembers" -> ent.hasVisibleMembers,
141
+ " hasShortenedDocstring" -> ent.hasShortenedDocstring,
137
142
" hasCompanion" -> ent.hasCompanion,
138
143
" companionPath" -> ent.companionPath.asJava,
139
144
" signature" -> ent.signature
@@ -152,6 +157,7 @@ object JavaConverters {
152
157
" paramLists" -> ent.paramLists.map(_.asJava).asJava,
153
158
" comment" -> ent.comment.map(_.asJava).asJava,
154
159
" implicitlyAddedFrom" -> ent.implicitlyAddedFrom.map(_.asJava).asJava,
160
+ " hasShortenedDocstring" -> ent.hasShortenedDocstring,
155
161
" isPrivate" -> ent.isPrivate,
156
162
" isProtected" -> ent.isProtected,
157
163
" signature" -> ent.signature
@@ -168,6 +174,7 @@ object JavaConverters {
168
174
" returnValue" -> ent.returnValue.asJava,
169
175
" comment" -> ent.comment.map(_.asJava).asJava,
170
176
" implicitlyAddedFrom" -> ent.implicitlyAddedFrom.map(_.asJava).asJava,
177
+ " hasShortenedDocstring" -> ent.hasShortenedDocstring,
171
178
" isPrivate" -> ent.isPrivate,
172
179
" isProtected" -> ent.isProtected,
173
180
" signature" -> ent.signature
@@ -183,6 +190,7 @@ object JavaConverters {
183
190
" path" -> ent.path.asJava,
184
191
" alias" -> ent.alias.map(_.asJava).asJava,
185
192
" comment" -> ent.comment.map(_.asJava).asJava,
193
+ " hasShortenedDocstring" -> ent.hasShortenedDocstring,
186
194
" isPrivate" -> ent.isPrivate,
187
195
" isProtected" -> ent.isProtected,
188
196
" signature" -> ent.signature
0 commit comments