class RuboCop::Cop::Style::NumericLiteralPrefix

def autocorrect(node)

def autocorrect(node)
  lambda do |corrector|
    type = literal_type(node)
    corrector.replace(node.source_range,
                      send(:"format_#{type}", node.source))
  end
end