mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
dd05934539
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
736 B
C++
29 lines
736 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibSyntax/Highlighter.h>
|
|
|
|
namespace Shell {
|
|
|
|
class SyntaxHighlighter : public Syntax::Highlighter {
|
|
public:
|
|
SyntaxHighlighter() = default;
|
|
virtual ~SyntaxHighlighter() override = default;
|
|
|
|
virtual bool is_identifier(u64) const override;
|
|
virtual bool is_navigatable(u64) const override;
|
|
|
|
virtual Syntax::Language language() const override { return Syntax::Language::Shell; }
|
|
virtual void rehighlight(const Palette&) override;
|
|
|
|
protected:
|
|
virtual Vector<MatchingTokenPair> matching_token_pairs_impl() const override;
|
|
virtual bool token_types_equal(u64, u64) const override;
|
|
};
|
|
|
|
}
|