File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -269,11 +269,14 @@ class TestCase extends TTestCase {
269
269
SupportMethod getASupportMethod ( ) {
270
270
exists ( SummaryComponentStack s | s = input .drop ( _) and s .tail ( ) != baseInput |
271
271
result = SupportMethod:: genMethodForContent ( s )
272
- ) or
272
+ )
273
+ or
273
274
exists ( SummaryComponentStack s | s = input .drop ( _) and s .tail ( ) = baseInput |
274
275
result = SupportMethod:: genMethodFor ( this .getInputType ( ) , s )
275
- ) or
276
- result = SupportMethod:: getMethodFor ( this .getOutputType ( ) , output ) or
276
+ )
277
+ or
278
+ result = SupportMethod:: getMethodFor ( this .getOutputType ( ) , output )
279
+ or
277
280
result = SupportMethod:: getMethodForContent ( output .tail ( ) .drop ( _) )
278
281
}
279
282
Original file line number Diff line number Diff line change @@ -389,6 +389,8 @@ private class ArrayGenMethod extends GenMethod {
389
389
390
390
bindingset [ arg]
391
391
override string getCall ( string arg ) {
392
- result = "new " + getShortNameIfPossible ( type ) + "{" + getConvertExprIfNotObject ( type .getComponentType ( ) ) + arg + "}"
392
+ result =
393
+ "new " + getShortNameIfPossible ( type ) + "{" +
394
+ getConvertExprIfNotObject ( type .getComponentType ( ) ) + arg + "}"
393
395
}
394
396
}
You can’t perform that action at this time.
0 commit comments