File tree 1 file changed +12
-6
lines changed
1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -198,24 +198,30 @@ FAMIX2JavaVisitor >> visitAttribute: aAttribute [
198
198
" Visit an attribute to print its annotations and its field."
199
199
200
200
" Printing the annotations for the attribute"
201
+
201
202
aAttribute annotationInstances
202
203
do: [ :annotationInstance |
203
204
self clone visit: annotationInstance.
204
205
self crlf ].
205
206
206
207
" Printing modifiers"
207
- self indent.
208
- aAttribute modifiers do: [ :modifier | self <<< modifier; space ].
209
-
208
+ self indent.
209
+ aAttribute modifiers
210
+ do: [ :modifier |
211
+ self
212
+ <<< modifier;
213
+ space ].
214
+
210
215
" Declared Type"
211
216
self printDeclaredType: aAttribute declaredType.
212
217
" Attribute name"
213
218
self
214
219
space;
215
- <<< aAttribute name;
216
- space.
220
+ <<< aAttribute name.
217
221
(aAttribute sourceAnchor sourceText includesSubstring: ' =' )
218
- ifTrue: [ self <<< (aAttribute sourceAnchor sourceText copyFrom: (aAttribute sourceAnchor sourceText findString: ' =' ) to: aAttribute sourceAnchor sourceText size) ].
222
+ ifTrue: [ self
223
+ space;
224
+ <<< (aAttribute sourceAnchor sourceText copyFrom: (aAttribute sourceAnchor sourceText findString: ' =' ) to: aAttribute sourceAnchor sourceText size) ].
219
225
self <<< ' ;'
220
226
]
221
227
You can’t perform that action at this time.
0 commit comments