
This will make it easier to support both string types at the same time while we convert code, and tracking down remaining uses. One big exception is Value::to_string() in LibJS, where the name is dictated by the ToString AO.
23 lines
583 B
C++
23 lines
583 B
C++
/*
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "Format.h"
|
|
#include <AK/DeprecatedString.h>
|
|
#include <AK/StringBuilder.h>
|
|
#include <AK/Vector.h>
|
|
|
|
namespace Diff {
|
|
DeprecatedString generate_only_additions(DeprecatedString const& text)
|
|
{
|
|
auto lines = text.split('\n', SplitBehavior::KeepEmpty);
|
|
StringBuilder builder;
|
|
builder.appendff("@@ -0,0 +1,{} @@\n", lines.size());
|
|
for (auto const& line : lines) {
|
|
builder.appendff("+{}\n", line);
|
|
}
|
|
return builder.to_deprecated_string();
|
|
}
|
|
};
|