summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/TextDocument.h
diff options
context:
space:
mode:
authorAli Mohammad Pur <ali.mpfard@gmail.com>2021-06-07 12:03:09 +0430
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2021-06-07 14:45:49 +0430
commit71b4433b0d83714852e882a83808a7d4bbeb6117 (patch)
treede087995b3c2751c0297e05a8f5a9c4fb808d9ca /Userland/Libraries/LibGUI/TextDocument.h
parent3bac14e19e6bf7df9019b71ff47aa34ab89e516f (diff)
downloadserenity-71b4433b0d83714852e882a83808a7d4bbeb6117.zip
LibWeb+LibSyntax: Implement nested syntax highlighters
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.
Diffstat (limited to 'Userland/Libraries/LibGUI/TextDocument.h')
-rw-r--r--Userland/Libraries/LibGUI/TextDocument.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/TextDocument.h b/Userland/Libraries/LibGUI/TextDocument.h
index 503e80580e..dfd3daf719 100644
--- a/Userland/Libraries/LibGUI/TextDocument.h
+++ b/Userland/Libraries/LibGUI/TextDocument.h
@@ -26,7 +26,7 @@ namespace GUI {
struct TextDocumentSpan {
TextRange range;
Gfx::TextAttributes attributes;
- void* data { nullptr };
+ u64 data { 0 };
bool is_skippable { false };
};