mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 18:24:45 -05:00
71b4433b0d
And use them to highlight javascript in HTML source. This commit also changes how TextDocumentSpan::data is interpreted, as it used to be an opaque pointer, but everyone stuffed an enum value inside it, which made the values not unique to each highlighter; that field is now a u64 serial id. The syntax highlighters don't need to change their ways of stuffing token types into that field, but a highlighter that calls another nested highlighter needs to register the nested types for use with token pairs.
32 lines
806 B
C++
32 lines
806 B
C++
/*
|
|
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibSyntax/Highlighter.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
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::HTML; }
|
|
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;
|
|
|
|
size_t m_line { 1 };
|
|
size_t m_column { 0 };
|
|
};
|
|
|
|
}
|