class SyntaxTree::IfOp

def format_flat(q)

def format_flat(q)
  q.format(predicate)
  q.text(" ?")
  q.indent do
    q.breakable_space
    q.format(truthy)
    q.text(" :")
    q.breakable_space
    q.format(falsy)
  end
end