class RBS::Writer

def indent(size = 2)

def indent(size = 2)
  indentation.push(" " * size)
  yield
ensure
  indentation.pop
end