mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 15:20:58 +00:00 
			
		
		
		
	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.
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			721 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			721 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2020, the SerenityOS developers.
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <LibSyntax/Highlighter.h>
 | 
						|
 | 
						|
namespace JS {
 | 
						|
 | 
						|
class SyntaxHighlighter : public Syntax::Highlighter {
 | 
						|
public:
 | 
						|
    SyntaxHighlighter() { }
 | 
						|
    virtual ~SyntaxHighlighter() override;
 | 
						|
 | 
						|
    virtual bool is_identifier(u64) const override;
 | 
						|
    virtual bool is_navigatable(u64) const override;
 | 
						|
 | 
						|
    virtual Syntax::Language language() const override { return Syntax::Language::JavaScript; }
 | 
						|
    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;
 | 
						|
};
 | 
						|
 | 
						|
}
 |