mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
fe3b846ac8
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
29 lines
760 B
C++
29 lines
760 B
C++
/*
|
||
* Copyright (c) 2020, Hüseyin Aslıtürk <asliturk@hotmail.com>
|
||
* Copyright (c) 2022, the SerenityOS developers.
|
||
*
|
||
* SPDX-License-Identifier: BSD-2-Clause
|
||
*/
|
||
|
||
#pragma once
|
||
|
||
#include <LibSyntax/Highlighter.h>
|
||
|
||
namespace GUI {
|
||
|
||
class IniSyntaxHighlighter final : public Syntax::Highlighter {
|
||
public:
|
||
IniSyntaxHighlighter() = default;
|
||
virtual ~IniSyntaxHighlighter() override = default;
|
||
|
||
virtual bool is_identifier(u64) const override;
|
||
|
||
virtual Syntax::Language language() const override { return Syntax::Language::INI; }
|
||
virtual void rehighlight(Palette const&) override;
|
||
|
||
protected:
|
||
virtual Vector<MatchingTokenPair> matching_token_pairs_impl() const override;
|
||
virtual bool token_types_equal(u64, u64) const override;
|
||
};
|
||
|
||
}
|