File tree 1 file changed +3
-12
lines changed 1 file changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -335,16 +335,6 @@ def Else(keyword, statements)
335
335
)
336
336
end
337
337
338
- # Create a new Elsif node.
339
- def Elsif ( predicate , statements , consequent )
340
- Elsif . new (
341
- predicate : predicate ,
342
- statements : statements ,
343
- consequent : consequent ,
344
- location : Location . default
345
- )
346
- end
347
-
348
338
# Create a new EmbDoc node.
349
339
def EmbDoc ( value )
350
340
EmbDoc . new ( value : value , location : Location . default )
@@ -466,12 +456,13 @@ def Ident(value)
466
456
end
467
457
468
458
# Create a new IfNode node.
469
- def IfNode ( predicate , statements , consequent )
459
+ def IfNode ( predicate , statements , consequent , beginning )
470
460
IfNode . new (
471
461
predicate : predicate ,
472
462
statements : statements ,
473
463
consequent : consequent ,
474
- location : Location . default
464
+ location : Location . default ,
465
+ beginning : beginning
475
466
)
476
467
end
477
468
You can’t perform that action at this time.
0 commit comments