mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-28 20:29:42 +00:00
This commit un-deprecates DeprecatedString, and repurposes it as a byte
string.
As the null state has already been removed, there are no other
particularly hairy blockers in repurposing this type as a byte string
(what it _really_ is).
This commit is auto-generated:
$ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \
Meta Ports Ladybird Tests Kernel)
$ perl -pie 's/\bDeprecatedString\b/ByteString/g;
s/deprecated_string/byte_string/g' $xs
$ clang-format --style=file -i \
$(git diff --name-only | grep \.cpp\|\.h)
$ gn format $(git ls-files '*.gn' '*.gni')
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "CodeDocument.h"
|
|
|
|
namespace HackStudio {
|
|
|
|
NonnullRefPtr<CodeDocument> CodeDocument::create(ByteString const& file_path, Client* client)
|
|
{
|
|
return adopt_ref(*new CodeDocument(file_path, client));
|
|
}
|
|
|
|
NonnullRefPtr<CodeDocument> CodeDocument::create(Client* client)
|
|
{
|
|
return adopt_ref(*new CodeDocument(client));
|
|
}
|
|
|
|
CodeDocument::CodeDocument(ByteString const& file_path, Client* client)
|
|
: TextDocument(client)
|
|
, m_file_path(file_path)
|
|
{
|
|
auto lexical_path = LexicalPath(file_path);
|
|
m_language = Syntax::language_from_filename(lexical_path);
|
|
}
|
|
|
|
CodeDocument::CodeDocument(Client* client)
|
|
: TextDocument(client)
|
|
{
|
|
}
|
|
|
|
CodeDocument::DiffType CodeDocument::line_difference(size_t line) const
|
|
{
|
|
return m_line_differences[line];
|
|
}
|
|
|
|
void CodeDocument::set_line_differences(Badge<HackStudio::Editor>, Vector<HackStudio::CodeDocument::DiffType> line_differences)
|
|
{
|
|
m_line_differences = move(line_differences);
|
|
}
|
|
|
|
}
|