mirror of
https://github.com/RGBCube/serenity
synced 2025-05-30 18:28:10 +00:00
LibWeb: Track the byte offset of an HTMLToken's position
We currently track the [line, column] position of every HTMLToken, as this is what is needed for LibGUI's syntax highlighting. Some non-LibGUI purposes (e.g. highlighting HTML with HTML) require a byte offset. Track both during tokenization.
This commit is contained in:
parent
ba4db899d4
commit
fea440055a
2 changed files with 2 additions and 0 deletions
|
@ -37,6 +37,7 @@ public:
|
|||
struct Position {
|
||||
size_t line { 0 };
|
||||
size_t column { 0 };
|
||||
size_t byte_offset { 0 };
|
||||
};
|
||||
|
||||
struct Attribute {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue