mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 08:57:34 +00:00
AK: Add a retreat(count) method to GenericLexer
This method can be used to rewind a constant amount backwards in the source instead of one by one with retract()
This commit is contained in:
parent
b2daaca5ee
commit
39a9cf4bb4
1 changed files with 6 additions and 0 deletions
|
@ -56,6 +56,12 @@ public:
|
||||||
--m_index;
|
--m_index;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
constexpr void retreat(size_t count)
|
||||||
|
{
|
||||||
|
VERIFY(m_index >= count);
|
||||||
|
m_index -= count;
|
||||||
|
}
|
||||||
|
|
||||||
constexpr char consume()
|
constexpr char consume()
|
||||||
{
|
{
|
||||||
VERIFY(!is_eof());
|
VERIFY(!is_eof());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue