Skip to content

Commit

Permalink
Remove printarg
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBakerEffendi committed Nov 8, 2024
1 parent d60d49d commit 68c6b5a
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -478,10 +478,7 @@ class RubyJsonToNodeCreator(
ForExpression(forVariable, iterableVariable, doBlock)(obj.toTextSpan)
}

private def visitForwardArg(obj: Obj): RubyExpression = {
println("forward args")
defaultResult(Option(obj.toTextSpan))
}
private def visitForwardArg(obj: Obj): RubyExpression = defaultResult(Option(obj.toTextSpan))

// Note: Forward args should probably be handled more explicitly, but this should preserve flows if the same
// identifier is used in latter forwarding
Expand Down

0 comments on commit 68c6b5a

Please sign in to comment.